Latest Posts

How to implement and use Extension Method in C# with examples

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..

Static class, Abstract class and Interface in C# with examples

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..

Delegates, Action and Func in C#

In this article, we will discuss the usage of Delegates, Action, and Func in C#,

Lambda Expression in C#

In this article, we will discuss the Lambda expression in C#, with the help of quite a good c..

Dictionary vs Hashtable in C#

In this article, we will discuss the difference between the Dictionary vs Hashtable in..