How can i determine if an attribute can be applied to a class using reflection?
I am currently pulling the collection of attribute types using reflection, basically:
GetAssemblies
GetTypes
- Where base type is type of
Attribute
then getting the constructors to get each available signature.
I only need the attributes that can be applied to a class, but not sure where to find the usage definition using reflection.