TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Sources
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Venkatasubbarao Polisetty (5)
Sarthak Varshney (4)
CSharp TV (4)
Arun Ramaswamy (3)
Hadshana Kamalanathan (3)
Dhruvin Shah (2)
Khoday Akilesh (2)
Jitendra Mesavaniya (2)
Allen Oneill (2)
Abdul Basith (2)
Jaipal Reddy (2)
Mahesh Chand (2)
Sundaram Subramanian (2)
John Morehouse (2)
Pawan Jajoo (2)
Swesh S (1)
Pradeep Shet (1)
Anuradha Rani (1)
Nikunj Satasiya (1)
Vijai Anand Ramalingam (1)
Ajay Kumar (1)
Rob Moulis (1)
Dharmeshwaran S (1)
Mohammad Irshad (1)
Jayakumar Balasubramaniam (1)
Shiv (1)
Alagunila Meganathan (1)
Delpin Susai Raj (1)
Syed Shanu (1)
Avinash Thakur (1)
George (1)
Ajit Srivastava (1)
Shiv Sharma (1)
Abiola David (1)
Allam Purushotham (1)
Dhiraj Poojary (1)
Naimish Makwana (1)
Muzaffar Ur Rahman (1)
Nandan Hegde (1)
Mohammad Hussain (1)
Sardar Mudassar Ali Khan (1)
Jochen Bartlau (1)
Simran Verma (1)
Mohamed Azarudeen Z (1)
Vitalii Honcharuk (1)
Ishoo Anyal (1)
Jaydeep Suryawanshi (1)
Akkiraju Ivaturi (1)
Shanuka Maheshwaran (1)
Miguel Teheran (1)
Bechir Bejaoui (1)
Sandeep Mishra (1)
Vinodh Kumar (1)
Prasham Sabadra (1)
Ojash Shrestha (1)
Srinath Pega (1)
Sabarish Natarajan (1)
Shweta Lodha (1)
Jin Necesario (1)
Varun Setia (1)
Kirtesh Shah (1)
Arindam Dawn (1)
Viknaraj Manogararajah (1)
Rion Williams (1)
Rikam Palkar (1)
Stephen Simon (1)
Gaurav Kumar (1)
Chhavi Goel (1)
Manish Tewatia (1)
Rushi Mehta (1)
Sanket Prabhu (1)
Dhanasekaran G (1)
Saleh Qadeer (1)
Siddhesh Chalke (1)
Kasam Shaikh (1)
Jiteendra Sampathirao (1)
Related resources for Sources
No resource found
Difference Between Large Language Model & Small Language Model
11/11/2024 6:01:01 AM.
Large and small language models differ primarily in scale, resources, and use cases. Large models, with billions of parameters, excel in generalization and diverse tasks but require significant comput
Cleaning the Resources: Finalize vs Dispose
9/19/2024 10:13:39 AM.
This article explores the concepts of Destructor and Dispose in C#. It illustrates the object's lifecycle, highlighting how constructors allocate memory and destructors clean up. The role of the G
Overview Of Data Gateway In Power BI
9/16/2024 11:19:33 AM.
A Power BI Gateway connects on-premise data sources, such as SQL Server or SharePoint, to online services like Power BI. It ensures secure communication, supports both Personal and Enterprise Modes, a
What are Azure Resource Group Benefits?
8/9/2024 7:58:09 AM.
In this article, we will learn Azure Resource Groups offer numerous benefits, including streamlined management and organization of resources, improved cost control, and enhanced security.
What are Azure Resources and Resource Groups
8/2/2024 6:21:11 AM.
Azure Resources are individual cloud services like virtual machines, app services, and storage accounts. Each resource serves a specific purpose, such as data storage or application hosting. Azure Res
Populate All Persons in a Group Depending Upon Dropdown Value
7/25/2024 12:16:12 PM.
Create a PowerApp to dynamically populate trainers based on a selected subject from a drop-down menu. First, two SharePoint lists should be set up: one for training details and another for trainer inf
How to Generate Server Side Reports in .NET Core
7/19/2024 9:12:48 AM.
Explore server-side reporting in .NET Core with top free packages: DinkToPdf, FastReport Open Source, and Report.NET. These tools simplify PDF generation from HTML and custom reports, offering cost-ef
Create a guardrail for Amazon Bedrock using .NET console application
7/17/2024 11:45:24 AM.
Learn how to create Amazon Bedrock guardrails using a .NET console app in Visual Studio 2022. Utilize AWS SDK for .NET to manage IAM permissions, AWS CLI setup, and .NET 8.0 SDK integration. Configure
Single Sign-On (SSO) in ASP.NET Core Applications
7/15/2024 6:53:24 PM.
Implementing Single Sign-On (SSO) with IdentityServer4 in ASP.NET Core simplifies user authentication across applications, enhancing security and user experience. Centralized authentication and token-
Partitioning in Virtualization: Optimizing Resources and Enhancing Security
7/12/2024 8:16:17 PM.
Partitioning in virtualization optimizes resource use by dividing physical servers into multiple virtual machines (VMs). It allocates CPU, memory, storage, and network resources efficiently, enhancing
Synchronizing Threads with AutoResetEvent in C# .NET
6/23/2024 3:47:19 PM.
In multithreaded C# applications, synchronizing thread execution is crucial to avoid race conditions and ensure controlled access to shared resources. The AutoResetEvent class helps manage this by act
Beginner's guide for creating standalone .rdlc reports with ssrs
6/18/2024 8:05:49 AM.
Learn how to create standalone SSRS reports using dummy data sources and access them via C# code. This article covers setting up .rdlc reports, mapping datasets, creating test harness in Visual Studio
LINQ vs PLINQ Method Syntax for Efficient C# .NET Data Processing
6/17/2024 5:09:08 AM.
LINQ (Language Integrated Query) and PLINQ (Parallel LINQ) are .NET frameworks for querying data. LINQ offers a declarative syntax for querying various data sources with single-threaded execution, whi
Creating a Web Resource Based on React TypeScript in Dynamics 365
6/13/2024 8:02:59 AM.
Integrating React and TypeScript with Dynamics 365 enables developers to build responsive and maintainable user interfaces. This approach leverages modern web practices for enhanced performance, reusa
Garbage Collection - Dispose Vs Finalize And IDisposable Pattern
6/12/2024 6:51:19 AM.
Explore Finalize, Destructor, IDisposable pattern in C# for managing unmanaged resources. Learn about memory management, Garbage Collector behavior, and IDisposable interface. Implement IDisposable fo
Overview Of Microsoft Graph Open Extensions And Schema Extensions
6/6/2024 7:43:56 AM.
Learn about Microsoft Graph Extensions allowing customization of Graph API resources. Understand Open Extensions and Schema Extensions, their necessity in managing application data, supported resourc
All About AppSettings In ASP.NET Core
6/4/2024 12:49:50 PM.
Learn how to configure ASP.NET Core applications using appsettings.json. This guide covers adding keys for database connections, email settings, and more in the appsettings file. Discover methods to r
Import And Export Data In Microsoft PowerApps
5/21/2024 9:40:13 AM.
Explore seamless data management with Microsoft PowerApps. Learn how to effortlessly import and export data, integrate various sources like SharePoint and Excel, and streamline processes using Power A
Managed Identities for Azure Resources
5/10/2024 4:15:52 AM.
Discover how Managed Identities simplify authentication in Azure by providing automatically managed identities for applications. Explore both System-assigned and User-assigned Managed Identities, thei
Unraveling Azure Bicep Resources
5/7/2024 10:29:22 AM.
This article is a comprehensive guide that takes you on a deep dive into Azure Bicep resources. It starts with logging into Azure, then moves on to explain the concept of resources in Azure Bicep, com
Mastering Resource Allocation in Azure
5/6/2024 8:54:15 AM.
This article provides a comprehensive guide on mastering resource allocation in Azure using the Allocation Success Recommender. The article concludes with tips on how to enhance your Azure experience
Connecting Grafana to Data Sources
5/6/2024 5:19:15 AM.
Connect Grafana to databases, APIs, and more for powerful data visualization. Link MySQL, PostgreSQL, or InfluxDB seamlessly and extend with plugins for MongoDB, Kafka, REST APIs, and cloud platforms
Xamarin.Forms - Open App Store Or Play Store In XamarinApp
4/30/2024 9:34:20 AM.
Learn to develop Xamarin.Forms apps for Android and iOS, accessing filesystems, and distributing data files. Implement UI elements like buttons and images. Use Xamarin.Essentials to open Play Store o
Introduction to Grafana: Power of Data Visualization
4/29/2024 5:16:32 AM.
Learn about Grafana, an open-source analytics and monitoring platform, and discover why it's essential for visualizing metrics data.
Are You Fresher & Looking For Way To Start With Microsoft .NET
4/25/2024 8:57:05 AM.
Get started with .NET Framework and its technologies for beginners. Learn C# with Visual Studio, explore web development with ASP.NET MVC and Entity Framework, master CRUD operations with SQL Server.
What is Alibaba Cloud Elastic IP Address?
4/23/2024 4:08:58 AM.
Alibaba Cloud EIPs provide static public IP addresses for your cloud resources, offering flexibility, cost control, and easy management in a Virtual Private Cloud (VPC) environment.
Create Multiple Languages In ASP.NET MVC 4.5 Framework
4/18/2024 1:28:41 PM.
Learn how to set up a multilingual ASP.NET MVC application in Visual Studio. Follow steps to create resources files for different languages, set up model classes with validation, implement language ma
Source Control (1), MS Source Safe --- Stand Alone App
4/10/2024 5:12:50 AM.
This article discuss Source Safe, a stand alone app.
Power BI Introduction: Connectivity, Creating Dashboards & Data
4/4/2024 9:15:53 AM.
Power BI, a Microsoft product, is a versatile visualization tool for data analysis, providing insights from various data sources like databases, files, and URLs. With Power BI Desktop, Service, and Mo
Use Wikipedia As A Data Source To Prepare Power BI Report
4/4/2024 8:55:41 AM.
Power BI is a business intelligence tool. It supports so many data sources to prepare a report. As we all know Wikipedia is a very good resource of useful information. We can consume Wikipedia data as
Increasing Item Limit in Power Apps: A Step-by-Step Guide up to 2000
3/12/2024 6:36:29 AM.
In this article, we will learn to Unlock the full potential of Power Apps by increasing the item limit to 2000 with our comprehensive step-by-step guide. Learn how to efficiently manage data sources,
Bicep Data Types Explained
2/25/2024 4:54:53 AM.
Bicep is a domain-specific language (DSL) that is used for deploying Azure resources - learn more about it in this series of articles!
Bicep Resources: What They Are and How to Use Them
2/23/2024 3:53:25 AM.
Bicep is a domain-specific language (DSL) that is used for deploying Azure resources - learn more about it in this series of articles!
Sharing Data Gateway in Microsoft Fabric Portal with Demo
2/1/2024 4:30:21 AM.
This article dives into how to share data gateway with users and resource groups in Microsoft Fabric. The Sharing Data Gateway in Microsoft Fabric Portal streamlines access and data transfer between o
Side Pane with Entity Form in Dynamics 365
1/12/2024 4:40:48 AM.
In Dynamics 365, the "Side Pane" typically refers to a section or area within an entity form where related or additional information is displayed. This section might contain related records,
Comparing Vertical Scaling and Horizontal Scaling in System Design
1/11/2024 6:14:25 AM.
Certainly! This article delves into the critical aspect of system design known as scalability, exploring two primary approaches: Vertical Scaling and Horizontal Scaling. Vertical Scaling involves enha
Introduction to the IDisposable Pattern
1/2/2024 6:46:59 AM.
Article on the IDisposable pattern in C#, covering introduction, details, code examples, and best practices. This article will explore the IDisposable pattern, its significance, and how to implement i
How to Create Login page in PowerApps using SharePoint
12/27/2023 6:58:21 AM.
PowerApps with a secure login screen. Learn the step-by-step process, from designing the interface to connecting to data sources, validating user credentials, handling navigation, and ensuring applica
Manage Azure Subscription Owners: Add and Remove User Access
12/27/2023 4:36:28 AM.
Giving and taking away elevated privileges inside the Azure environment is what it means to designate and remove a user as an Owner of an Azure subscription. An owner has complete control over the sub
Resource URI (Unique Resource Identifier) details of Common Microsoft Resources in Entra ID
10/23/2023 7:04:18 AM.
Resource URI (Unique Resource Identifier) details of Common Microsoft Resources in Entra ID.
Delegation in Power BI
9/18/2023 6:26:06 AM.
Delegation in Power BI streamlines data processing by shifting tasks to the data source, enhancing efficiency and scalability, especially with large datasets. Learn key aspects of this essential conce
When to Choose Serverless Versus Fixed Size Resources
9/18/2023 3:50:01 AM.
In this session you will learn about utilization patterns that are a good fit for serverless workloads, and when to choose serverless versus fixed-size resources.
Scalable Event-Driven APIs with Azure Event Grid and Service Bus in ASP.NET Core
9/13/2023 10:37:28 AM.
In this comprehensive example, we covered all the essential components required for building an event-driven API using Azure Event Grid and Azure Service Bus. Keep in mind that the specific implementa
Using Langchain to Extend an OpenAI Bot with Chat and Source Retrieval
8/23/2023 11:03:03 AM.
Eliminating Render Blocking Resources
6/28/2023 10:05:45 AM.
Enhancing Website Performance
Mastering Virtual Machine Deployment in Azure: In 8 steps.
5/10/2023 11:38:51 AM.
This title suggests that the article will provide readers with a comprehensive guide to creating virtual machines in Azure, which will help them to become proficient in this essential skill. The title
Share personal Azure resources to colleague & collaboration on POCs.
5/3/2023 4:59:22 AM.
Share personal Azure resources to colleague & collaboration on POCs.Precondition: Once you activated personal subscription from your company account you can create resources and build your infra
Secure Resources Using Azure Managed Identities
4/19/2023 6:42:27 AM.
In this article, we will learn how to secure resources on azure platform without using any type of security key of connection string.
How To Visualise Mapping Of Existing Azure Resources
2/13/2023 11:15:27 AM.
ARM Template viewer - This extension will give a graphical representation of the ARM template.
Deploy Resources (Resource Group, Virtual Network And Subnet) In Azure Via Terraform
2/7/2023 10:33:16 AM.
In this article, you will learn how to deploy resources (Resource Group, Virtual Network And Subnet) in Azure Via Terraform.
SSRS Tutorial: Part 4 - Embedded Data Sources
1/11/2023 9:43:30 AM.
This article explains how to create embedded Data Sources.
SSRS Tutorial: Part 2 - Shared Data Sources
1/11/2023 9:42:33 AM.
This article explains how to create Shared Data Sources in SSRS reports.
Kubernetes Fundamental Resources - Kubernetes Fundamentals Ep.3
1/10/2023 5:46:07 AM.
In this episode, you will be able to identify the fundamental resources and objects in Kubernetes.
Find Difference of Data Between Two Data Sources
1/6/2023 8:28:24 AM.
One of the friends in C-sharpcorner has asked me for help displaying the difference of data from two different data sources.
How To Generalize Virtual Machines And Create Image VMs In Azure Portal
10/28/2022 5:22:51 AM.
In this article, you will learn how to generalize virtual machines and create image vms in azure portal.
Free resources For Learning .NET MAUI
9/21/2022 3:56:16 AM.
In this article, you will find resources to learn .NET MAUI from scratch
Handle resource files - Read and Write into a resx file programmatically: Part III
8/24/2022 9:26:21 AM.
This is the third part of the resources handling where one can see how to create a resx file to stock data about our resources using code.
Update Associations using XRM WebApi With WebResource In Dynamics CRM
5/20/2022 12:57:52 PM.
In Dynamics 365 CRM, for certain requirements we need to update associations in the related tables i.e., update lookup values. As an example, for a selected contact record account lookup will be upda
Dynamics 365 HTML And JavaScript Resources
4/19/2022 12:45:55 PM.
In this article, you will learn about Dynamics 365 HTML and JavaScript Resources.
Creating Azure Cosmos DB Resources From The Azure Portal
4/8/2022 11:46:56 AM.
In this article, you will learn how to create Azure Cosmos DB resources from the Azure portal.
Clear Form Notifications With Webresource In Dynamics CRM
2/23/2022 3:13:13 PM.
In Dynamics 365 CRM to clear form notifications, web resources of type JavaScript was used. Form context ui related client api reference can be used. As an example, contact form and contact entity rec
Use Form Context To Set Form Values With Web Resource In Dynamics CRM
2/9/2022 5:55:14 AM.
In Dynamics 365 CRM to perform customizations, web resources of type JavaScript was widely used. To set different attributes that are present in CRM Form, form context client api reference can be used
How To Deploy The Managed Identities For Azure Resources On A VM Using The Azure Portal
2/7/2022 3:39:45 PM.
How to deploy the managed identities for Azure resources on a VM using the Azure portal
Understand Form Context To Read Form Data With Web Resource In Dynamics CRM
2/2/2022 2:00:07 PM.
In Dynamics 365 CRM, to perform customizations web resources of type JavaScript was widely used. To read different attributes that are present in CRM Form, form context client api reference can be use
Resource Files in ASP.NET
1/31/2022 11:15:49 AM.
This article explains you the use of resource files in ASP.NET 2.0.
Creation Of Web Resource Through CRM Classic UI In Dynamics CRM
1/12/2022 5:52:45 AM.
In Dynamics 365 CRM, we can create a web resource through CRM Classic UI other than Unified User Interface. As an example, let us see the process of creation of web resource in Contact Customizations
How to Delete Resources In Azure
12/13/2021 3:05:10 PM.
In this article, you will learn how to Delete Resources In Azure.
Connect Power BI With Different Data Sources
10/21/2021 1:14:31 PM.
In this article, we will learn how to connect different data sources with Power BI.
Terraform Azure - Creating And Managing The Infrastructure Resources
10/20/2021 12:49:04 PM.
In this article, we'll learn coding the Azure Infrastructure using Terraform.
Data Sources For The Power BI
10/18/2021 11:35:46 AM.
In this article, we will learn “How to connect Power BI with difference Data Sources”. With Power BI, we can connect different types of data such like from Excel to Online data.
How to create PowerApps with Dynamics 365 & CDS 2 0 Data Sources
9/13/2021 6:41:46 AM.
How to create PowerApps with Dynamics 365 & CDS 2 0 Data Sources
Block Access To Microsoft 365 Resources From Unmanaged Windows Device
7/23/2021 10:28:05 AM.
This article describes the creation of Conditional Access policy to block access to Microsoft 365 resources from Unmanaged or Non-Compliant Windows devices Devices
Learn To Create The Compute Resources In The Azure Machine Learning Workspace
7/19/2021 6:00:31 AM.
In this article, you will learn how to create the compute resources in the Azure Machine Learning workspace.
Top 5 ways to secure Azure resources - IT Security Virtual Conference 2021
7/12/2021 10:36:25 AM.
This session in IT Security Virtual Conference 2021 is about Top 5 ways to secure Azure resources
Secure Azure Resources using Azure Private Link - IT Security Virtual Conference 2021
7/12/2021 10:19:58 AM.
This session in IT Security Virtual Conference 2021 is about Secure Azure Resources using Azure Private Link
Finalize in .NET
4/6/2021 11:00:11 AM.
We implement the Finalize method to release the unmanaged resources.
Chrome Dev Tools: Elements and Sources Tab
4/5/2021 4:36:26 AM.
In this video, we've shown how to basically use the "elements" tab and "source" tab. As we start the video, we started on how we can open up or pull up the chrome dev tools. Th
Introduction To Administering Resources In Microsoft Azure Cloud
2/16/2021 4:27:18 PM.
In this article, you will learn about Administering Resources in Microsoft Azure Cloud.
Understanding ADO.NET Components
10/29/2020 4:28:12 AM.
In this article I will explain about ADO.NET Components.
Azure - Using Powershell
10/13/2020 7:44:03 AM.
In this article, you will learn about Azure Powershell.
Azure SQL Offers Manual Failover For PaaS Resources
9/24/2020 4:43:32 AM.
In this article, you will learn about Azure SQL Offers Manual Failover for PaaS Resources.
30 Days Of Python 👨💻 - Day 30 - Free Python Resources
8/27/2020 9:13:38 AM.
In this article, you will learn about Free Python Resources in Python.
Connecting A Datasource Dynamically In PowerApps Using Power Automate - Part Two
8/1/2020 12:08:54 PM.
Part 2 of 2 to load data dynamically from different data sources in PowerApps
Connecting Datasource Dynamically In PowerApps Using Power Automate - Part One
7/31/2020 11:26:44 AM.
In this article, you will learn how to load data dynamically from different datasources in PowerApps
How To Move Azure Resources Between Existing Subscription To New Subscription
7/29/2020 2:33:06 AM.
In this article you will learn how to move Azure Resources between Existing Subscription to New Subscription.
Azure Application Insights Resources (Classic And Workspace-Based)
7/28/2020 8:18:05 AM.
In this article, you will learn about Azure Application Insights Resources (Classic andworkspace-based).
An Education In Streaming
7/24/2020 1:57:51 AM.
Streaming isn’t always intuitive and often it’s downright contrary to everything your previous experience has taught you.Sometimes, you just need a good book.
Static And Dynamic Resources In WPF
6/2/2020 5:23:23 AM.
In this article, you will learn how to define static & dynamic resources, how to utilize them in an application or single-screen wide, and how to load multiple resource files together.
Best Resources to Learn MongoDB
4/2/2020 11:58:48 PM.
A quick check on what is MongoDB and how you can learn easily from global authors.
Understanding Layout and Resources Using Android Studio
3/31/2020 7:24:39 AM.
This article illustrates the use of Layout and String resources using Android Studio.
Multiple Screen Support in Android using Android Studio
3/30/2020 12:53:53 AM.
This article explains how Android applications support multiple screens having various sizes and densities.
Bitmap and Nine-Patch Drawable Resources in Android
3/23/2020 11:21:11 PM.
Here I am sharing my experience of working with Drawable Resources in Android, Through this article you will learn to use Bitmap and Nine-Patch Drawable Resources which is the first two of ten Resourc
What Is A Test Plan And How To Write Test Plans
2/11/2020 7:30:07 AM.
In this article, we will learn about test plans how to write a test plan in Software testing.
Windows 10 App LifeCycle
1/7/2020 10:51:59 AM.
In this article you will learn about the Windows 10 App LifeCycle.
Introduction of Azure Cloud Shell
9/1/2019 2:55:34 PM.
This article provides you an information about Azure Cloud Shell to interact and access the Azure Resources.
Setting Colors And Styles In Application Resources
2/26/2019 9:53:40 AM.
In this article, we will learn how to set up a theme or a color for your Xamarin application and change this by using a toggle.
Managing Your Azure Resources Via Mobile
12/3/2018 9:08:17 AM.
Microsoft Azure offers up a lot of technologies that you can play around with. One thing that you might not know is that they also offer up a mobile presence to help manage your Azure resource. The ap
Overview Of WPF Resources
10/28/2018 11:59:29 PM.
Resources in WPF are set of objects like Brushes, Templates, styles etc. which are stored in Dictionary and referenced by unique strings. Usually they are declared once and used throughout the applica
Upgrading QnA Maker Service And Associated Azure Resources
9/14/2018 9:15:04 AM.
In this article, I will show you how to upgrade the QnA Maker service and associated Azure resources using the Azure portal. Also, will present the demo video for the same.
Using StaticResources in WPF
8/29/2018 5:20:48 AM.
Here I describe Resource markup extensions. StaticResources are resolved at compile time.