IDisposable.Dispose is never called after exception in using block
问题 I understand from many sources like this and this that the Dispose method of an IDisposable will always be called if an exception is thrown in a Using block. So then I have this code: static class MainEntryPoint { static void Main(string[] args) { AppDomain.CurrentDomain.UnhandledException += HandleUnhandledException; using (var x = new Disposable()) { throw new Exception("asdfsdf"); } } private static void HandleUnhandledException(Object sender, System.UnhandledExceptionEventArgs e) {