I was wondering: When looking at an ASP.NET error page with a stack trace you can see a + sign and a number at the end of each line.

For example: alt text

Also in the trace pasted in this question: http://stackoverflow.com/questions/680434

The numbers are not the line numbers in the sources files, so I suspect them to be something like stack (or parameter) sizes.

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted
  • If it's in the release mode, it's CIL offset for that function in the DLL.
  • If it's in debug mode, it's the line number in the source.
link|improve this answer
Cool, do you have any reference to the MSDN library where this is described? – thijs Apr 1 '09 at 9:22
That does not describes all the possible data that a stackframe contains, not what ASP.NET is actually displaying – thijs Apr 1 '09 at 9:48
True. But the only information on MSDN about what it contains is "a readable representation of the stack trace". – vartec Apr 1 '09 at 10:09
It's Exception.StackTrace.toString() – vartec Apr 1 '09 at 10:11
feedback

In other languages (and therefore, probably this one too) it denotes the current position in the code, as a number of bytes or instructions offset from the function it is in. So in this case it got 173 bytes/instructions/whatever into Validate and then raised the exception.

I can't explain the 2049947 value however...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.