Is there any way to determine if an object is a generic list? I'm not going to know the type of the list, I just know it's a list. How can I determine that?
|
|
This will return "True"
Do you care to know if it's exactly a "List"... or are you ok with it being IEnumerable, and Generic? |
||
|
|
|
|
Theres a GetType() function in the System.Object class. Have you tried that? |
||||
|
|
|
Try:
|
||
|
|
|
|
The following method will return the item type of a generic collection type. If the type does not implement ICollection<> then null is returned.
Edit: The above solution assumes that the specified type has a generic parameter of its own. This will not work for types that implement ICollection<> with a hard coded generic parameter, for example:
Here is a new implementation that will handle this case.
|
||||
|
|
|
|
||
|
|
|
The question is ambiguous. The answer depends on what you mean by a generic list.
.
The best solution (e.g. whether to use GetType, IsAssignableFrom, etc) will depend on what you mean. |
||
|
|
