如何在错误报告中使用签名?

Chr*_*fer 15 c# exception

我刚刚发送了一个beta测试程序,用户通过此错误报告回复了我:

Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01:   myprogram.exe (not the actual name of the file)
Problem Signature 02:   1.4.0.0
Problem Signature 03:   4ff759ce
Problem Signature 04:   System.Windows.Forms
Problem Signature 05:   4.0.0.0
Problem Signature 06:   4ee9b94f
Problem Signature 07:   14e0
Problem Signature 08:   23
Problem Signature 09:   System.ObjectDisposedException
Run Code Online (Sandbox Code Playgroud)

我当然可以在MSDN 上找到有关System.ObjectDisposedException的信息.所以我可能有一些问题,我要求一个已被处置的对象(可能是一个文件流).

所以签名09:告诉我它抛出了什么样的异常 - 但其他签名是否会告诉我有关导致此异常的原因的任何信息?

对我来说问题签名06-08似乎持有有趣的数据,但我不知道这意味着什么.

如何阅读其中一个错误报告应该是相当普遍的兴趣.

wac*_*any 16

关于问题签名的信息基本上是中间语言级别的错误dll的存储位置.

此博客文章解释了每个可用字段.您可以使用MSIL反汇编程序检查dll

希望这是你想要的,

问候,

编辑:作为补充说明,为了研究中间级代码,我发现在MSIL反汇编程序中更容易进行File-> Dump.然后根据Signature 07 param搜索方法.例如.method /.590. /