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 Usage
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 (28)
Jaimin Shethiya (21)
Kaviya Balasubramanian (3)
Sanjay Kumar (2)
Jefferson S. Motta (2)
Jitendra Mesavaniya (2)
Mahesh Chand (2)
Oleg Litvinov (1)
Rohini Parade (1)
Arpit Shrivastava (1)
Devesh Omar (1)
Gowtham K (1)
Vijai Anand Ramalingam (1)
Sagar Pardeshi (1)
Satheesh Elumalai (1)
Vijay Yadav (1)
El Mahdi Archane (1)
Baibhav Kumar (1)
Alkesh Bijarniya (1)
Jay Krishnareddy (1)
Arun Ramaswamy (1)
Ashish Shukla (1)
Sarthak Varshney (1)
bhavin (1)
Juan Francisco Morales Larios (1)
Mohamed Hasan (1)
Naimish Makwana (1)
Gurpreet Arora (1)
Vinoth Xavier (1)
Shiv Sharma (1)
Farhan Ahmed (1)
Mukesh Nailwal (1)
Rajeev Ranjan (1)
Mageshwaran R (1)
Scott Lysle (1)
Mohammad Hussain (1)
Pradeep Vaishya (1)
Arindam Dawn (1)
Tural Suleymani (1)
Chandrakant Upadhyay (1)
Amit Mohanty (1)
Tuhin Paul (1)
Manas Mohapatra (1)
Lajapathy Arun (1)
George (1)
Anmol Arora (1)
CSharp TV (1)
Related resources for Usage
No resource found
Dependency Properties in WPF: Benefits, Usage, and Examples in C#
10/21/2024 6:14:51 AM.
A Dependency Property in WPF is a specialized property supported by the WPF property system. It enables data binding, styling, animation, and value inheritance. This system improves memory efficiency
Learn NLog Advanced Usage
10/19/2024 3:10:53 PM.
This article explores implementing dynamic logging in multi-tenant applications using NLog. It discusses configuring NLog to enable debug logging on a per-request basis without modifying existing conf
MongoDB Comparison Operators
9/20/2024 7:46:04 AM.
Learn how to use MongoDB comparison operators like $eq, $ne, $gt, $lt, and more in this comprehensive guide. Master querying and filtering data with practical examples and best practices for efficient
What is Indexer in C#?
9/13/2024 5:39:00 AM.
An indexer in C# allows objects to be indexed like arrays, enabling access to elements using an index. It’s defined with this keyword and can be used to encapsulate data access in a class or struct. I
Response Cache Attribute in .NET Core 8: Usage, and Examples
9/9/2024 9:42:08 AM.
This guide covers its usage, configuration, and examples, explaining how to implement response caching in ASP.NET Core for faster load times and reduced server overhead in your web applications.
Understanding HttpClient Best Practice
9/2/2024 7:56:51 AM.
Creating a new HttpClient instance frequently can lead to performance issues like socket exhaustion due to open sockets lingering in the TIME_WAIT state. Instead, reuse a singleton HttpClient instance
Azure Advisor recommendation using Resource Manager REST API
8/27/2024 11:03:18 AM.
Azure Advisor is a digital assistant that optimizes Azure deployments by offering recommendations to enhance cost, performance, reliability, and security. Learn how to pull Azure Advisor reports, conf
Learn to Shrink a Microsoft SQL Server Database Programatically
8/20/2024 4:59:45 AM.
Shrinking a SQL Server database reduces file size by reclaiming unused space in data and log files. This can optimize disk usage, especially in storage-constrained environments. However, it can cause
Detailed use of Tuples and Value Tuples in C#
8/16/2024 10:48:51 AM.
This guide explores the detailed use of Tuples and ValueTuples in C#. It covers their differences, how to create and manipulate them, and practical examples for implementing them in real-world applica
Stream Conversations with Amazon Bedrock API in .NET Console App
8/12/2024 5:13:11 AM.
Learn how to create a .NET console application that streams conversations using the Amazon Bedrock Converse API with the Anthropic Claude 3 Sonnet model. This guide covers setting up your AWS environm
Constructor in .NET Core C#: Usage and Examples
7/29/2024 6:36:58 AM.
Learn about constructors in .NET Core with C# in this comprehensive guide. Discover how constructors initialize class instances, their role in dependency injection, and various use cases.
Total Page hit count in PowerApps.
7/16/2024 10:13:46 AM.
Discover effective methods for monitoring usage statistics, generating insightful reports, and leveraging data visualization to gain actionable insights into app performance and user engagement.
How to Set Up Copilot in Visual Studio Code in an Angular Project, Metrics and Usage
7/15/2024 6:00:48 PM.
GitHub Copilot is an advanced AI-powered tool integrated into Visual Studio Code, enhancing coding efficiency by suggesting code snippets, automating routine tasks like unit test generation, and optim
Basic Usage of ng-repeat in AngularJs
7/9/2024 11:37:03 PM.
Explore the fundamental concepts of AngularJS with a focus on ng-repeat directive usage. Learn how to efficiently iterate through data, apply filters, and handle basic data binding within AngularJS ap
UNION ALL SQL Server: Syntax, Usage, and Example
7/8/2024 5:51:29 AM.
UNION ALL in SQL Server is a powerful command used to combine the result sets of two or more SELECT statements, including all duplicate rows. This guide covers the syntax, usage, and practical example
UNION SQL Server: Syntax, Usage, and Example
6/28/2024 8:22:44 AM.
This article delves into the UNION operator in SQL Server, explaining its syntax and practical usage. You'll learn how to combine results from multiple SELECT statements into a single result set,
SQL Merge Statement: Syntax, Usage, and Example
6/25/2024 5:51:39 AM.
The SQL MERGE statement combines INSERT, DELETE, and UPDATE operations into a single query, synchronizing data between source and target tables based on key fields. This powerful command efficiently h
Predicate Delegates in .NET Core C#: Syntax, Usage and Examples
6/22/2024 10:26:47 AM.
Like Func and Action delegates, the predicate is a delegate. It symbolizes a procedure that verifies that the passed parameter satisfies a set of requirements. One input parameter must be provided by
Action Delegates in .NET Core C#: Syntax, Usage and Examples
6/18/2024 5:33:24 AM.
One built-in generic type delegate is the action delegate. This delegate makes your program more readable and efficient by eliminating the need for you to define a custom delegate.
Java Script Callbacks: Syntax, Usage, and Examples
6/17/2024 10:02:11 AM.
JavaScript is designed to support asynchronous programming; it can handle numerous tasks concurrently. JavaScript callbacks are crucial because they let you run code after an asynchronous task complet
Func Delegates in .NET Core C#: Syntax, Usage and Examples
6/13/2024 5:09:03 AM.
Func and Action are two generic delegate types that are built into C#, so you usually don't need to explicitly define custom delegates. A generic delegate called Func is part of the System namespa
Delegates in .NET Core C#: Syntax, Usage and Examples
6/11/2024 9:17:47 AM.
A delegate is an object that points to a method; alternatively, it may be thought of as a variable of the reference type that stores references to the methods. Function pointer in C/C++, delegates are
Linq To Excel In Action
6/5/2024 5:34:51 AM.
Explore using LinqToExcel library in C# to query data from Excel spreadsheets effortlessly. Learn step-by-step creation of a console application, installation of LinqToExcel packages, and querying Exc
Sealed Class in .NET C#: Syntax, Usage, and Example
5/30/2024 9:46:27 AM.
Users are prevented from inheriting a class by using sealed classes. The sealed keyword can be used to seal a class. The keyword informs the compiler that an extension of the class is not possible bec
Understanding Threads and Processes: A Guide to Multiprocessing
5/28/2024 12:03:34 PM.
Multiprocessing revolutionizes computing by allowing CPUs to handle multiple tasks concurrently. Explore process-based and thread-based multiprocessing, their characteristics, key differences, and pra
String Builder in .NET C#: Usage, and Example
5/26/2024 12:11:21 PM.
Since the string type in C# is immutable, we are unable to alter its contents once they are created. This implies that attempting to modify a string-type object after it has been created will result i
Running the Microsoft Windows Malicious Software Remove Tool
5/24/2024 5:01:21 AM.
The Microsoft Windows Malicious Software Removal Tool (MSRT) helps remove malicious software from Windows systems. It automatically runs monthly via Windows Update, but can also be manually executed.
What is useReducer Hook and Its Usage?
5/20/2024 11:23:22 AM.
The useReducer hook in React manages complex state logic by structuring state transitions through actions, inspired by Redux but simpler and more integrated into React components.
Usage of “Required” Keyword in C#
5/17/2024 4:21:25 AM.
In this article, we will learn about the usage of required keywords in C#. In C# 11, the `required` keyword enforces the initialization of properties and fields within classes, records, or structs, en
Unique Key in SQL: Syntax, Usages, and Example
5/16/2024 9:30:31 AM.
Unique Key in SQL ensures each record in a database table is distinct. Syntax involves defining columns with UNIQUE constraints. It prevents duplicate values, enhancing data integrity and search effic
String in .NET C#: Usage, and Example
5/16/2024 3:39:19 AM.
A string in C# is an object belonging to the String class that symbolizes a string of characters. Numerous operations, including length, concatenation, comparison, obtaining substring, search, trim, r
Primary Key in SQL: Syntax, Usages, and Example
5/14/2024 11:46:09 AM.
A primary key in SQL uniquely identifies each record in a database table. It ensures data integrity and efficient data retrieval. Defined using the CREATE TABLE or ALTER TABLE commands, a primary key
Abstract Class in .NET C#: Syntax, Usage and Example
5/13/2024 5:01:47 AM.
Abstract classes in .NET C# provide a blueprint for other classes to inherit from. They contain abstract methods that must be implemented by derived classes. Learn syntax, usage, and see examples to u
Exploring Azure Bicep Functions: Syntax, Usage, and Examples
5/9/2024 4:45:29 AM.
This article is a comprehensive guide that takes you on a deep dive into Azure Bicep functions. It starts with logging into Azure and then moves on to explain the concept of functions in Azure Bicep,
Reflection and Attributes in C#
5/8/2024 10:16:45 AM.
Reflection in C# allows examining and manipulating types, methods, and other members at runtime. Attributes provide metadata to annotate code elements, aiding in customization and dynamic behavior. To
Analyzing VVF & VCF License Usage in vSphere 8.0 Update 2b
5/8/2024 4:24:17 AM.
Explore the new VMware vSphere Foundation (VVF) & VMware Cloud Foundation (VCF) license usage in vSphere 8.0 Update 2b for efficient virtualization.
Hash Table in .NET: Syntax, Usage, Methods, and Example
5/7/2024 10:26:55 AM.
A group of key/value pairs arranged according to the key's hash code is represented by the Hashtable class. This class is contained in the namespace System. Collections. To execute different kinds
Get All SharePoint Site Collection Usage Details Using Graph API
5/6/2024 11:22:22 AM.
In this article, we will see the steps to check all the SharePoint site collection usage details using Graph API. The process is quite simple; just follow along.
HashSet .NET C#: Usage, Methods, and Example
5/3/2024 8:40:37 AM.
A hash set is an unordered list of distinct elements in C#. In.NET 3.5, this collection is released. When we wish to stop duplicate pieces from being added to the collection, we typically utilize it.
Check The Site Usage In SharePoint Online
5/2/2024 10:02:45 AM.
Monitor and analyze site usage efficiently in SharePoint Online with comprehensive analytics. Gain insights into traffic, user activity, and engagement through detailed reports and metrics.
Get Email Activity And Mailbox Usage Details Of All Users Using Graph API
5/2/2024 9:54:04 AM.
Utilize Graph API to retrieve comprehensive details on email activity and mailbox usage for all users. Gain insights into communication patterns and resource utilization across your organization effic
Log Parser Usage Details For IIS Logs
5/1/2024 11:01:00 AM.
Explore Log Parser for IIS logs: Analyze, extract, and transform data effortlessly. Master command-line tools for detailed log analysis and troubleshooting. Unlock insights from your log files efficie
App.Config AutoReader
4/26/2024 9:05:23 AM.
In our day to day development, it is a rare case where we don’t need to read a configuration file. There are many techniques for the treatment of such static classes, singleton classes, etc and it is
SQL Temporary Tables: Syntax, Types, and Usage
4/25/2024 11:22:20 AM.
SQL temporary tables are session-specific tables used to store interim results during query processing. They're created and destroyed within a session, offering a scratchpad for complex queries or
Struct in C#: Syntax, And Usage
4/23/2024 9:03:37 AM.
A struct in C# is a value type that represents a lightweight data structure. It's defined using the "struct" keyword and contains fields, properties, and methods. Suitable for small data
Diagnostic And Performance Monitoring in .Net 4.0
4/22/2024 8:23:32 AM.
Explore .NET 4.0's enhanced performance monitoring capabilities, including application domain-level resource tracking for memory and processor usage. Utilize Hosting APIs and Event Tracing for Wi
C# 9 Record Types: Immutable Value Types, Syntax, & Usage
4/18/2024 9:30:53 AM.
Records in C# provide immutable data structures for representing data. They offer concise syntax for declaring classes with value-based equality, read-only members, and built-in methods like ToString(
Singleton vs. Static Class in C# - Choosing the Right Approach
4/17/2024 4:54:57 AM.
Singleton and Static classes can only have one instance available in memory, and both classes can be used to maintain the global state of an application, however, there are many differences between th
C# Out Parameter: Usage, Syntax, and Updates
4/15/2024 11:31:21 AM.
C# out parameters facilitate passing method arguments' references. Unlike ref, they need not be initialized. With C# 7.0, parameters can be directly defined in the method, streamlining code. A wi
The Experimental Attribute in .NET 8 and C# 12
4/3/2024 4:56:32 AM.
In this article, we will discuss Experimental Attributes in .NET 8 and C# 12. The ExperimentalAttribute in C# .NET 8 marks APIs as experimental, signaling potential changes. It's crucial for libra
C# Structs: Performance Benefits, Usage, and Best Practices
4/1/2024 4:25:28 AM.
This article provides an insightful overview of structs in C#, detailing their value type nature, stack allocation, and key characteristics. It includes examples and considerations for when to use str
Enums in C#: Syntax, Usage, and Best Practices
3/26/2024 5:21:08 AM.
In C#, enums (short for enumerations) offer a powerful tool for developers to define a set of named integral constants. In this article, we'll delve into the fundamentals of enums in C# and explor
Optimize HttpClient Usage in .NET Core
3/26/2024 4:06:46 AM.
Dive into advanced topics like dependency injection, service configuration, and implementing retry policies and circuit breakers. Elevate your API integration game with this comprehensive guide to lev
Understanding Site Usage & Site Report in SharePoint
3/4/2024 10:43:58 AM.
In this article, we will understand Site Usage & Site Report in SharePoint entails grasping how users interact with your site, tracking metrics such as page views, unique visitors, and popular con
Usage of Classes, Structs, and Records in C#
2/26/2024 10:34:08 AM.
In the world of C# programming, choosing the right data structure can significantly impact the efficiency and readability of your code. In this article, we'll delve into the nuances of each const
Different Types of Comments in C# and Their Usages
11/6/2023 9:21:50 AM.
This article will explain the different types of comments in C# and why should we use comments.
Operator Overloading In C#
10/11/2023 6:08:33 AM.
In this article we are going to learn operator overloading, and the basic concepts of operator overloading.
How To Use C# If Else Statement?
9/22/2023 9:45:43 AM.
The if else statement in C# is one of the most commonly used selection statements. This code example shows how to use an if..else if statement in C#.
Sealed Class Explained In C#
9/22/2023 6:10:12 AM.
In this article, I will explain how to create and use a sealed class in C# with some examples. I have written this article focusing on students and beginners.
Monitor and Display CPU State Information
9/4/2023 10:00:57 AM.
This article describes a quick and simple approach to displaying information about the state of the CPU or CPUs on a targeted machine.
SQL Server CTE : Usage, Features, and Limitations
8/14/2023 10:05:37 AM.
CTE Usage Guide: When and How to Use CTE in SQL Server and its Features and Limitations
C# Abstract Classes: Definition, Usage With Example
8/7/2023 5:24:16 AM.
Learn all about C# Intermediate Abstract Classes in this comprehensive guide. Understand the concepts, usage, and benefits. A must-read for C# developers aiming to enhance their skills. Click to becom
Simplifying Usage of trackBy in Angular Directives for Effective Item Tracking
6/19/2023 10:30:16 AM.
Discover how to leverage Angular's trackBy directive to effortlessly maintain accurate item tracking in your lists and improve rendering performance
GraphQL in .NET: Practical usage
6/12/2023 4:35:52 AM.
In this article we will configure graphQL via hot-chocoloate library.
Static Constructor In C# And Its Usages
6/6/2023 10:11:01 AM.
Static constructor is used to initialize static data members as soon as the class is referenced first time. This article explains how to use a static constructor in C#.
SQL Server Constraints: Types and Usage
5/2/2023 2:46:32 PM.
SQL Server Constraints: Types and Usage
Differences Between IEnumerable And IQueryable And Its Memory Usage
2/28/2023 10:47:15 AM.
IEnumerable and IQueryable are two of the most commonly used interfaces in .NET for dealing with collections of data. While both of these interfaces provide a way to access collections of data, they d
Usage and Importance of Using in C#
2/20/2023 5:00:07 AM.
This article explains the various ways to use the using keyword in C# and what its benefits are.
Practical Usage of NameValueCollection in C#
8/24/2022 5:38:58 AM.
In this article, we are going to see the practical usage of a NameValueCollection.
Usage Of Async And Await With Webresource In Dynamics CRM
6/30/2022 1:52:24 PM.
Await / Async is built on promises and is a clean way to represent asynchronous processes in a synchronous way. In Dynamics 365 async and await are used especially while working with web api calls so
Web Browser Usage Distribution
4/29/2022 12:26:57 PM.
Discuss the Usage share of web browsers.
Usage Of STL In CPP Programming
3/23/2022 4:45:52 PM.
Standard Template Library that is considered as the bundle of template classes and pre defined functions that is highly used segment for the generic programming.
Usage Of Progress Indicator With Webresource In Dynamics CRM
3/10/2022 4:28:42 AM.
In Dynamics 365 CRM to show Progress Indicator, we have client API’s that are available under Xrm.Utility so that the user can know what is happening and can wait without performing any other operatio
Usage Of Peek Code In Power Automate
3/9/2022 3:32:50 PM.
In Power Automate, at times we need to write expressions manually, a quick way of doing is by using Peek code functionality that is present in every action in Power Automate . Especially this Peek cod
Usage Of Min Function In Power Automate
2/28/2022 1:53:26 PM.
In Power Platform, at times we must compare values to identify the minimum number. In Power Automate, min Function can be used quickly to find out min value in the given set of integers /Array .
Usage Of Less Function In Power Automate
2/28/2022 5:53:45 AM.
In Power Platform, at times we must compare values to identify whether the given number is less or not. In Power Automate, Less Function can be used quickly to find out whether the given integer/float
Usage Of Scheduled Cloud Flow In Power Automate
2/18/2022 6:27:46 AM.
At times we tend to miss important updates especially some reminders, here in order to handle these kinds of things Scheduled cloud flows comes for rescue in Power Automate. As a real time scenario, w
Usage Of Trim Function In Power Automate
2/17/2022 3:48:25 PM.
In Power Platform, at times we must omit the spaces that are present inside a string. To achieve this functionality Trim function in Power Automate can be used. As an example, String variable name was
Usage Of Length Function In Power Automate
2/11/2022 3:51:27 PM.
In Power Platform, at times we must length of a string or elements in an array to perform certain operations on them. In Power Automate, Length Function can be used quickly to find out whether the giv
Usage Of Empty Function In Power Automate
2/10/2022 4:44:27 PM.
In Power Platform, at times we must verify whether the given json object or string or array have empty value or not. In Power Automate, Empty Function can be used quickly to find out whether empty val
Usage Of Union Function In Power Automate
2/4/2022 3:35:22 PM.
In Power Platform, at times we must combine couple of Arrays or objects. In these scenarios, Union function in Power Automate can be used. As an example, Names String Array and Vehicles String Array w
Usage Of Intersection Function In Power Automate
2/4/2022 5:50:57 AM.
In Power Platform, at times we must take common values present in Arrays or objects. In these scenarios, Intersection function in Power Automate can be used. As an example, Names Array and Names Objec
Usage Of Take Function In Power Automate
1/28/2022 8:57:23 AM.
In Power Platform, at times we must take few elements from an Array or few characters from a given string. In these scenarios, Take function in Power Automate can be used. As an example, Employees Str
Usage Of ChangeSet Request In Power Automate
1/20/2022 3:19:53 PM.
In certain scenarios we must bundle multiple operations together so that all should pass or fail, in any case if one of the operations fails then all the other operations gets roll backed to make atom
Usage Of First And Last Function In Power Automate
1/14/2022 5:32:40 AM.
In Power Platform, for certain business scenarios we must extract first, and last characters of a given string or First and Last items present in an array. First And Last function can be used in power
Usage Of HTML Table In Power Automate
1/6/2022 4:27:54 AM.
In Power Platform for certain scenarios data needs to be represented in HTML Table , in those cases we can work with HTML Table Action, as an example we will show list of contacts in an HTML Table.
Usage Of Skip Function In Power Automate
12/31/2021 5:58:03 AM.
In Power Platform, at times we must skip few elements from an Array or few characters from a given strings. In these scenarios, Skip function in Power Automate can be used.As an example Employees Stri
Usage Of Join Function In Power Automate
12/17/2021 12:33:11 PM.
In Power Automate, at times we must join few items which received in the form of strings. As a scenario, response of the user was taken to show this function behavior.
Usage Of If Function In Power Automate
12/10/2021 5:17:22 PM.
In this article, you will learn about how to use If function in Power Automate
Usage of Equals Function in Power Automate
12/2/2021 11:19:34 AM.
In Power Automate, at times we must validate two values and proceed further if result is true, in these scenarios Equals function is used. As a scenario, name of the person and current years values we
Usage Of And Function In Power Automate
11/26/2021 9:36:27 AM.
In Power Automate, at times we must validate two expressions and proceed further if both the expressions are true, in these scenarios and function is used. As an scenario, name of the person and lucky
Usage Of Do Until Function In Power Automate
11/25/2021 5:02:46 AM.
In Power Automate, at times we must repeat certain steps until a condition met. In these scenarios we make use of Do until function as an example counter value will be incremented till it become 3.
Usage Of Or Function In Power Automate
11/18/2021 1:27:29 PM.
In Power Automate, for doing validations or Function will be used. As an example, an String variable and a number is used to do this validation.
Usage Of Not Function In Power Automate
11/12/2021 9:02:28 AM.
In Power Automate, for doing validations Not Function will be used. As an example, an String variable used to work with Not function.
Usage Of Less Than Function In Power Automate
11/11/2021 1:41:31 PM.
In Power Automate, generic arithmetic operations like Less Than will be used to validate provided integer values. As an example, an integer variable used to work with Less than function.
Usage Of Greater Function In Power Automate
11/5/2021 5:52:14 AM.
In Power Automate, generic arithmetic operations like Greater will be used to validate provided integer values. As an example, an integer variable used to work with Greater function.
Usage Of GreaterOrEqual Function In Power Automate
11/4/2021 5:12:39 AM.
In Power Automate, generic arithmetic operations like GreaterOrEqual will be used to compare between values. As an example, Speed Limit with integer value considered to compare with other integer valu
Usage Of JSON Function In Power Automate
10/29/2021 4:33:11 AM.
In Power Automate, at times we must work on JSON with String Values as input. We can use JSON function in power automate to convert string values to JSON and perform related operations. As an example,
Usage Of XML Function In Power Automate
10/28/2021 2:00:02 PM.
In Power Automate, at times we must work on strings which have XML values. We can use XML function in power automate to convert string value to XML and perform related operations. As an example, notif
Usage of SharePoint Online Webparts - MVP Show ft. Primal Lobo
10/26/2021 4:21:21 PM.
Watch Primal Lobo as she talks about the Usage of SharePoint Online Webparts.