public bool IsList(object value)
{
Type type = value.GetType();
// Check if type is a generic list of any type
}
What's the best way to check if the given object is a list, or can be cast to a list?
What's the best way to check if the given object is a list, or can be cast to a list? |
|||
|
|
|
|||||||||||||
|
|
For you guys that enjoy the use of extension methods:
So, we could do:
|
||||
|
|
|
||||
|
Probably the best way would be to do something like this:
This will give you maximum flexibility and also allow you to work with many different types that implement the |
|||||
|
|
Maybe you find answer here http://stackoverflow.com/questions/755200/how-do-i-detect-that-an-object-is-a-generic-collection-and-what-types-it-contain |
|||
|
|
|
|||
|
|
|
|||
|
|