Extension methods in C#
Extension methods as the name implies, about extending the functionalities of the class. They helps to add a new method to existing Class (or Type).
C# Tutorial Collection, Tips and tricks, Step by Step Explanation with Examples, Source Codes and more
Extension methods as the name implies, about extending the functionalities of the class. They helps to add a new method to existing Class (or Type).
C# Generic methods allows us the create highly reusable code. In this tutorial we will explain you the concept behind creating and using the generic methods.