2012-12-12 56 views
4

我有一个错误,这是图所示:是什么+的堆栈跟踪数意味着

[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是什么意思? 这不是行号。

回答

4

这将是IL偏移量,这发生在没有PDB文件/调试信息存在时。

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

相关问题