I'm currently building an application which has become quite big. Even though the application is working fine, I am seeing in the "Output"-window a few Exceptions being thrown.
I would like to solve those exceptions but the Exceptions don't provide any information from which method they are coming.
So for example I get a System.ObjectDisposedException
, but I don't really have an idea where it is being thrown.
Is there a way I can easily trace where this Exception is being thrown?
Thanks