Generics in C#

What are Generics in C# ?

According to MSDN, “Generics introduce to the .NET Framework the concept of type parameters, which make it possible to design classes and methods that defer the specification of one or more types until the class or method is declared and instantiated by client code.”   By using Generics, classes and methods can work uniformly on …

What are Generics in C# ? Read More »