S
Samuel R. Neff
When you have an unhandled exception in vb.net how do you view the
exception information in the debugger?
In C# the debugger creates a local variable that points to the
exception and you can view it in one of the windows (autos or locals,
don't remember which). That doesn't appear to be the case with
vb.net.
I also tried using the command window to inspect "Err" but that gave
nothing useful (always empty).
If I catch the exception then I have my own variable which has the
information, but that only applies to caught exceptions and I'd rather
not change my code to catch things lower down in the call stack just
to facilitate debugging.
Is there something I'm missing? A menu option? a window?
Thanks,
Sam
exception information in the debugger?
In C# the debugger creates a local variable that points to the
exception and you can view it in one of the windows (autos or locals,
don't remember which). That doesn't appear to be the case with
vb.net.
I also tried using the command window to inspect "Err" but that gave
nothing useful (always empty).
If I catch the exception then I have my own variable which has the
information, but that only applies to caught exceptions and I'd rather
not change my code to catch things lower down in the call stack just
to facilitate debugging.
Is there something I'm missing? A menu option? a window?
Thanks,
Sam