Stacktrace question

  • Thread starter Thread starter Morten Snedker
  • Start date Start date
M

Morten Snedker

At the end of each line in the stacktrace message there's a +[number], eg.

System.Web.Services.Protocols.SoapHttpClientProtocol.EndInvoke(IAsyncResult
asyncResult) +101

What does the +101 tell me?

Regards /Snedker
 
Morten said:
At the end of each line in the stacktrace message there's a +[number], eg.

System.Web.Services.Protocols.SoapHttpClientProtocol.EndInvoke(IAsyncResult
asyncResult) +101

What does the +101 tell me?

It's the offset from the start of the Intermediate Language code making
up that routine. You get this when things are compiled in Release Mode
- in Debug Mode, you'd get the source line number instead.

HTH,
Phill W.
 
Back
Top