how to read this stacktrace?
who can explain me how to understand this to fix the bug.
"Frame Image Function Offset
0 coredll.dll xxx_RaiseException 19
1 mscoree3_7.dll 436488
2 mscoree3_7.dll 386545
3 mscoree3_7.dll 540936
4 TransitionStub 0
5 GeoCaching.Main.btnGoToPin_Click 312
6 System.Windows.Controls.Primitives.ButtonBase.OnClick 132
7 System.Windows.Controls.Button.OnClick 120
8 System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp 228
9 System.Windows.Controls.Control.OnMouseLeftButtonUp 100
10 MS.Internal.JoltHelper.FireEvent 896
11 mscoree3_7.dll 429164
12 mscoree3_7.dll 430528
13 mscoree3_7.dll 610803
14 mscoree3_7.dll 374593
15 0
16 agcore.dll CCoreServices::CLR_FireEvent 385
17 npctrl.dll CControlBase::ScriptCallback 435
18 npctrl.dll CXcpDispatcher::OnScriptCallback 547
19 npctrl.dll CXcpDispatcher::OnReentrancyProtectedWindowMessage 479"
You don’t get much information from that stack trace. You can read the
Imagename, which is the name of the assembly where the methods are, and theFunctionname, which is the name of the method.It looks like there was an exception in the
GeoCaching.Main.btnGoToPin_ClickorTransitionStubmethods, but the stack trace alone doesn’t tell you what kind of exception, or what information was put in the Exception object.If you would have compiled the application with debug information on, you would get some more information in the stack trace, like the line number in each method.