Tagged Questions
22
votes
3answers
8k views
C# - how enumerate all classes with custom class attribute?
Question based on MSDN example: http://msdn.microsoft.com/en-us/library/aa288454(VS.71).aspx
Let's say we have some C# classes with HelpAttribute in standalone desktop application. Is it possible to ...
5
votes
6answers
600 views
How can I keep track of (enumerate) all classes that implement an interface
I have a situation where I have an interface that defines how a certain class behaves in order to fill a certain role in my program, but at this point in time I'm not 100% sure how many classes I will ...
0
votes
1answer
126 views
C# class scanning
In Java there are methods to go about scanning the classpath/all classes/within a package and enumerating the classes therein. e.g. spring component scanning uses something like this to scan all ...