Hi,
How can I find every occurrence of a custom attribute inside an assembly?
If can find all types from an assembly where the attribute is used but thats not enough. How about methods, properties, enum, enum values, fields etc.
Is there any shortcut for doing this or is the only way to do it to write code to search all parts of a type (properties, fields, methods etc.) ?
Reflector does this, not sure how its implemented though.