Question based on MSDN example.
Let's say we have some C# classes with HelpAttribute in standalone desktop application. Is it possible to enumerate all classes with such attribute? Does it make sense to recognize classes this way? Custom attribute would be used to list possible menu options, selecting item will bring to screen instance of such class. Number of classes/items will grow slowly, but this way we can avoid enumerating them all elsewhere, I think.
In case of the Portable .NET limitations, the following code should work:
or for a large number of assemblies using loop-state based
yield return
:Other answers reference GetCustomAttributes. Adding this one as an example of using IsDefined
We can improve on Andrew's answer and convert the whole thing into one LINQ query.
Yes, absolutely. Using Reflection:
This is a performance enhancement on top of the accepted solution. Iterating though all classes can be slow because there are so many. Sometimes you can filter out an entire assembly without looking at any of its types.
For example if you are looking for an attribute that you declared yourself, you don't expect any of the system DLLs to contain any types with that attribute. The Assembly.GlobalAssemblyCache property is a quick way to check for system DLLs. When I tried this on a real program I found I could skip 30,101 types and I only have to check 1,983 types.
Another way to filter is to use Assembly.ReferencedAssemblies. Presumably if you want classes with a specific attribute, and that attribute is defined in a specific assembly, then you only care about that assembly and other assemblies that reference it. In my tests this helped slightly more than checking the GlobalAssemblyCache property.
I combined both of these and got it even faster. The code below includes both filters.
Well, you would have to enumerate through all the classes in all the assemblies that are loaded into the current app domain. To do that, you would call the
GetAssemblies
method on theAppDomain
instance for the current app domain.From there, you would call
GetExportedTypes
(if you only want public types) orGetTypes
on eachAssembly
to get the types that are contained in the assembly.Then, you would call the
GetCustomAttributes
method on eachType
instance, passing the type of the attribute you wish to find.You can use LINQ to simplify this for you:
The above query will get you each type with your attribute applied to it, along with the instance of the attribute(s) assigned to it.
Note that if you have a large number of assemblies loaded into your application domain, that operation could be expensive. You can use Parallel LINQ to reduce the time of the operation, like so:
Filtering it on a specific
Assembly
is simple:And if the assembly has a large number of types in it, then you can use Parallel LINQ again: