Nate Bross
Contributor
Just wondering if I've been missing something all this time.
My main use of Generics is like this
What are some other applications of Generics that you use, or is this the majority of the use?
My main use of Generics is like this
C#:
List<MyUDT> myItems = new List<MyUDT>(50);
foreach(MyUDT i in myItems)
{
Console.WriteLine(i.ToString());
}
What are some other applications of Generics that you use, or is this the majority of the use?