Is there any way to display the variable where an Unhandled Exception occurred in a compiled application?
e.g I let the application crash with this code
So I want to display the name "CrashString()".
Or maybe there's a way to display some more information about a crash than just the StackTrace, Message and InnerException?
Thanks in advance
.
e.g I let the application crash with this code
VB.NET:
Dim CrashString(2) As String
For c As Integer = 0 To 3
CrashString(c) = "CrashValue"
Next
Or maybe there's a way to display some more information about a crash than just the StackTrace, Message and InnerException?
Thanks in advance