What do the “+n” values mean at the end of a method name in a stack trace?

后端 未结 4 666
日久生厌
日久生厌 2020-11-28 12:41

When reading a stack trace like:

[FormatException: Input string was not in a correct format.]
   System.Number.Strin         


        
4条回答
  •  孤城傲影
    2020-11-28 13:06

    It means:

    it’s an offset into the native instructions for the method.

    Read this for more details.

提交回复
热议问题