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

后端 未结 8 2114
傲寒
傲寒 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:28

    We've had issues with Exceptions in Thread-Code. If you spawn a new Thread and forget to handle an exception in the thread method, the application just "stops" - no error message, no nothing, but only an entry in the Event Log. Not even then UnhandledExceptionHandler is triggered.

    Maybe something like this is the cause?

提交回复
热议问题