Can I prevent an uncaught exception in another AppDomain from shutting down the application?

后端 未结 2 1594
感动是毒
感动是毒 2020-12-20 16:29

I\'m having trouble with a misbehaved library that throws an exception in a finalizer, which of course crashes the application.

To avoid this, I tried loading the li

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-20 17:13

    Actually, back in .NET 1.0/1.1, it behaved as you need. You can still revert to this behavior by simply adding this row to your application configuration file, inside the "runtime" node:

    
        
    
    

    This will prevent an unhandled exception in a different thread from terminating the entire process.

提交回复
热议问题