C# provides a very useful feature to extend the feature of an existing type without requiring the source code of original data type or permission of author who created the original type. Use of extension method is very common and every application creates one or more extension methods based on thier custom requirement. We will see some of the easiest example of Extension methods and see h..
C# provides a very useful feature to extend the feature of an existing type without requiring the source code of original data type or permission of author who created the original type. Use of extension method is very common and every application creates one or more extension methods based on thier custom requirement. We will see some of the easiest example of Extension methods and see h..
In this article, we will discuss the usage of Delegates, Action, and Func in C#,
In this article, we will discuss the Lambda expression in C#, with the help of quite a good c..
In this article, we will discuss the difference between the Dictionary vs Hashtable in..