Search Results

-1
votes

Getting all types that implement an interface with C# 3.5

You could use some LINQ to get the list: var types = from type in this.GetType().Assembly.GetTypes() where type is ISomeInterface select type; …
3
votes

Do access modifiers affect reflection also?

Yes you can access private fields via reflection. This is how a lot of ORMs go about populating an object without going through your properties (which will invoke business logic you might not have …