I want to determine if a generic object type (\"T\") method type parameter is a collection type. I would typically be sending T through as a Generic.List but it could be any co
This will be the simplest check..
if(Obj is ICollection) { //Derived from ICollection } else { //Not Derived from ICollection }