C# Generics
Generics in C# allows defining the specification of the data type of programming elements in a class or a method until it is actually used in the program. Specification for the class or method can be written with substitute parameters for the data type. Following are some important features of Generic: Generics in C# helps to … Read more