I’m using Visual Studio 2010, and am working in a large C# solution. I want to get a list of all enums in the solution. Can I do this? The object browser doesn’t seem to allow me to filter to certain types of objects. (Also curious how I would get a list of all classes, interfaces, methods, etc.)
Share
If you need to find
enums generically I think your best bet is Find with Look In: = “Entire Solution”(shortcut Shift+Ctrl+F). Expand “Find options” check Use: and select “Regular expressions” in the dropdown. And Find: = “(public|private|internal) enum”.