22 lines
438 B
C#
22 lines
438 B
C#
using System;
|
|
using System.Threading;
|
|
|
|
class Test {
|
|
static int Main ()
|
|
{
|
|
AppDomain.CurrentDomain.UnhandledException += OnUnhandledException;
|
|
WaitCallback wcb = new WaitCallback ((a) => {
|
|
throw new Exception ("From the threadpoool");
|
|
});
|
|
wcb.BeginInvoke (wcb, null, null);
|
|
Thread.Sleep (1000);
|
|
return 0;
|
|
}
|
|
|
|
static void OnUnhandledException (object sender, UnhandledExceptionEventArgs e)
|
|
{
|
|
Environment.Exit (1);
|
|
}
|
|
}
|
|
|