using System; using System.Diagnostics; using System.Threading; using System.Threading.Tasks; class CustomException : Exception { } class Driver { /* expected exit code: 0 */ static void Main (string[] args) { ManualResetEvent mre = new ManualResetEvent (false); ThreadPool.QueueUserWorkItem (_ => { try { throw new CustomException (); } finally { mre.Set (); } }); if (!mre.WaitOne (5000)) Environment.Exit (2); /* Give a chance to the threadpool thread to finish executing the exception * unwinding after the finally, before we exit with status 0 on the current thread */ Thread.Sleep (1000); Environment.Exit (0); } }