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 pr
A rather straightforward approach would be to type cast the object as the collection and directly use that.