What would be the best way of getting the type of items a generic list contains? It\'s easy enough to grab the first item in the collection and call .GetType(), but I can\'
You could use the Type.GetGenericArguments method for this purpose.
List myList = ... Type myListElementType = myList.GetType().GetGenericArguments().Single();