C# 什么是+;堆栈跟踪平均值中的数字

C# 什么是+;堆栈跟踪平均值中的数字,c#,stack-trace,C#,Stack Trace,我有一个错误,如下所示: [OverflowException: Value was either too large or too small for a Decimal.] System.Decimal..ctor(Double value) +0 System.Decimal.op_Explicit(Double value) +30 MyMethod(int myParameter) +5174 AnotherMethod(int myParameter) .... +5174是什么意

我有一个错误,如下所示:

[OverflowException: Value was either too large or too small for a Decimal.]
System.Decimal..ctor(Double value) +0
System.Decimal.op_Explicit(Double value) +30
MyMethod(int myParameter) +5174
AnotherMethod(int myParameter) ....
+5174是什么意思?
它不是行号。

它将是IL偏移量,当没有PDB文件/调试信息时会发生这种情况

您可以为发布程序集生成PDB数据,这使得跟踪问题更加直接