2 using System
.Threading
;
6 static void DoStuff () {
7 Console
.WriteLine ("DoStuff ()");
10 static void Main (string [] args
) {
13 Thread
.CurrentThread
.Abort ();
19 } catch (Exception
) {}
20 // This call will send us back up to label one; and we'll loop forver
21 Thread
.CurrentThread
.Abort ();