Tagged Questions
1
vote
5answers
1k views
object[] from ReadOnlyCollection<T>
I have an object that I ended up with via a reflection call:
object readOnlyCollectionObject = propertyInfo.GetValue(someEntity, null);
I know this object is a generic ReadOnlycollection. It could ...