0

I am using reflection to loop through the properties of an array of objects of type Dynamic.

I am looping through the PropertyInfos, and want to know if the type is implementing an ICollection, but I don't want to define what the collection is, just that it is an ICollection.

What is the syntax to achieve this?

code below:

foreach (PropertyInfo propertyInfo in Item.GetType().GetProperties())
        {
            if (propertyInfo is ICollection<>)
            {

            }
            else
            {

            }
        }
Tom Crosman
  • 1,137
  • 1
  • 12
  • 37

0 Answers0