I am new to Xamarin and am currently developing my first Android app.
I deliberately threw an exception as follows:
throw new Exception("Whoops");
When I am on this line, the emulator does not give any indication that a problem has occurred. If I set a breakpoint in the above line in Visual Studio and then stepping over it, I get the following error:
The frame is not in the module. The current stack stack was not found in the loaded module.
How can I get Visual Studio to tell me what went wrong? At the moment, I can not find any traces of the exception.
source
share