Are there any tools available for querying attributes defined for methods/classes?
It would be nice if it was possible to get a list of methods/classes with specific attributes, no attributes at all, etc.
I can imagine I could do this with reflection, but maybe there’s a better way.
I would be grateful if anyone has any idea about it.
Thank you.
.NET Reflectoris a popular tool that does everything in your question. You could also find the same information using the objects in theSystem.Reflectionnamespace.