If I use a try/catch and display a messagebox,I can only see the exception but the VS IDE does not point me to the Exact LINE…(although I get the name of the function and stacktrace)
Is there anyway to throw the exception back on the exact line during debugging without removing the try / catch blocks?
Thanks
In Visual Studio, got to the Debug Menu -> Exceptions…
Make sure ‘Thrown’ is checked as well as ‘User-Unhandled’.
That will make Visual Studio break on the line that threw the Exception even if it is handled (thus pointing you to the exact line).