vote up 3 vote down star

Is there a way to iterate (through foreach preferably) over a collection using reflection? I'm iterating over the properties in an object using reflection, and when the program gets to a type that is a collection, I'd like it to iterate over the contents of the collection and be able to access the objects in the collection.

At the moment I have an attribute set on all of my properties, with an IsCollection flag set to true on the properties that are collections. My code checks for this flag and if it's true, it gets the Type using reflection. Is there a way to invoke GetEnumerator or Items somehow on a collection to be able to iterate over the items?

flag

57% accept rate

8 Answers

vote up 6 vote down check

I had this issue, but instead of using reflection, i ended up just checking if it was IEnumerable. All collections implement that.

if (item is IEnumerable)
{
    foreach (object o in (item as IEnumerable))
    {

    }
} else {
   // reflect over item
}
link|flag
the as in not needed, you checked it with the is so a simple cast is fine – ShuggyCoUk Feb 14 at 19:52
casting with as is faster than (IEnumerable)item. – Darren Kopp Feb 17 at 16:34
vote up 0 vote down

When your using reflection you aren't necessarily using an instance of that object. You would have to create an instance of that type of be able to iterate through the object's properties. So if you are using reflection use the ConstructorInfo.Invoke() (?) method to create a new instance or point to an instance of the type.

link|flag
vote up 1 vote down

The best you could probably do would be to check if the object implements certain collection interfaces - probably IEnumerable would be all that you need. Then it's just a matter of calling GetEnumerator() off of the object, and using IEnumerator.MoveNext() and IEnumerator.Current to work your way through the collection.

This won't help you if the collection doesn't implement those interfaces, but if that's the case it's not really much of a collection, I suppose.

link|flag
vote up 0 vote down

Can you provide a code snippet to explain your question a bit?

A rather straight forward aproach would be to type cast the object as the collection and directly use that.

link|flag
vote up 3 vote down

Just get the value of the property and then cast it into an IEnumerable. Here is some (untested) code to give you an idea:

ClassWithListProperty obj = new ClassWithListProperty();
obj.List.Add(1);
obj.List.Add(2);
obj.List.Add(3);

Type type = obj.GetType();
PropertyInfo listProperty = type.GetProperty("List", BindingFlags.Public);
IEnumerable listObject = (IEnumerable) listProperty.GetValue(obj, null);

foreach (int i in listObject)
    Console.Write(i); // should print out 123
link|flag
vote up 1 vote down

I've tried to use a similar technique as Darren suggested, however just beware that not just collections implement IEnumerable. string for instance is also IEnumerable and will iterate over the characters.

Here's a small function I'm using to determine if an object is a collection (which will be enumerable as well since ICollection is also IEnumerable).

    public bool isCollection(object o)
    {
        return typeof(ICollection).IsAssignableFrom(o.GetType())
            || typeof(ICollection<>).IsAssignableFrom(o.GetType());
    }
link|flag
vote up 0 vote down

I would look at the Type.FindInterfaces method. This can filter out the interfaces implemented by a given type. As in PropertyInfo.PropertyType.FindInterfaces(filterMethod, filterObjects). You can filter by IEnumerable and see if any results are returned. MSDN has a great example in the method documentation.

link|flag
vote up 0 vote down

pi = o.GetType().GetProperty(propname); MethodInfo [] mi = pi.GetAccessors(); try { ICollection cb = (ICollection)pi.GetGetMethod().Invoke(o, null); object[] ocb = new object [cb.Count]; cb.CopyTo(ocb, 0); // the collection is in the array .. // so you may loop through a for Loop ..

}

// ENJOY.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.