Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What do the + numbers mean in a stack trace [duplicate]

Tags:

c#

I am trying to track down an exception thrown in a c# web app I have created and was wondering if someome could tell me what the + numbers relate to on each line in the stack trace

enter image description here

like image 603
Richard Banks Avatar asked Aug 02 '13 08:08

Richard Banks


1 Answers

It's the offset from the start of the method, so the Exception is thrown 110 bytes (in IL) from the start of GetEmployee (which is not directly translatable to a line number due to compiling, jitting, inlining etc.)

like image 159
Michael Stum Avatar answered Nov 02 '22 00:11

Michael Stum