Generics are the most powerful and anticipated feature of C# 2.0. Generics allow you to define type-safe data structures, without committing to actual data types. This results in a significant performance boost and higher quality code, because you get to reuse data processing algorithms without duplicating type-specific code. In concept, generics are similar to C++ templates, but are drastically different in implementation and capabilities.
Generic
An Introduction to C# Generics
http://msdn.microsoft.com/vcsharp/default.aspx?pull= /library/en-us/dv_vstechart/html/csharp_generics.asp9:29 PM | Add comment | #dotnet