How to troubleshoot .NET 2.0 Error Reporting messages in the event log?

后端 未结 8 2085
傲寒
傲寒 2020-12-23 23:35

I work on an open source product called EVEMon written in C# targeting the .NET 2.0 platform, I have one user who is suffering from a strange .NET crash that we have been un

相关标签:
8条回答
  • 2020-12-24 00:31

    You should get a more detailed stack trace by sending the .pdb file for that particular release to the user (to be put next to the .exe) and having them reproduce the crash.

    0 讨论(0)
  • 2020-12-24 00:36

    You should handle AppDomain.UnhandledException in code.

    There was a similar question asked. See related ones too.

    0 讨论(0)
提交回复
热议问题