Reputation: 3169
Let's say I have a class with the following schema.
public MyClass {
public Dictionary<String, Class1> Dict1 { get; set; }
public Myclass() {
// Add and work with dic1
}
}
I'd like to use reflection to get all class1 of the dict1. I hope this is clear, otherwise let me know and I will put additional information. Thanks, and any help would be greatly appreciated.
Upvotes: 0
Views: 659