What do the numbers + in the stack trace mean

I am trying to track the exception that was thrown in a C # web application I created and was wondering if anyone could tell me that the numbers + refer to every line in the stack trace

enter image description here

+4
source share
1 answer

This is an offset from the beginning of the method, so an Exception is thrown 110 bytes (in IL) from the beginning of GetEmployee (which cannot be directly translated to a line number due to compilation, jitting, pasting, etc.)

+9
source

Source: https://habr.com/ru/post/1494918/


All Articles