Is there a simple way to see for a running .Net application, all the classes that have been loaded so far? This would be helpful in removing classes that are no longer being used in a large project.
I know I could put static initializers in every class and have them do some sort of registration, but this is tedious and error-prone. It would be great if there was a cleaner way to do it through the AppDomain or Assembly class or something. Thanks!