If I invoke a method which does something illegal, the debugger will stop at the line of code, in that method, which threw the exception
If I use reflection to call a method via Invoke and that method throws an exception, the debugger stops on line where the method was called via reflection and not in the faulty method itself
How do I change this, and have the debugger stop on the line of code in error in regardless of how the method was invoked?
The code is built in Debug