Category Archives: Uncategorized

Extension Methods

Hello guys, in this article I would like to share some brief introduction of extension methods.
The agenda is how to create and use extension methods

Extension methods are called as if they were instance methods on extended type.

Example we have extended function like

string testString = string.Empty;
 testString.Split(',');
 testString.ToString();

and many more.

Read the rest of this entry