Stacktrace question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Morten Snedker

    #1

    Stacktrace question

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

    System.Web.Serv ices.Protocols. SoapHttpClientP rotocol.EndInvo ke(IAsyncResult
    asyncResult) +101

    What does the +101 tell me?

    Regards /Snedker
  • Phill W.

    #2
    Re: Stacktrace question

    Morten Snedker wrote:
    At the end of each line in the stacktrace message there's a +[number], eg.
    >
    System.Web.Serv ices.Protocols. SoapHttpClientP rotocol.EndInvo ke(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.

    Comment

    Working...