From: Patrik Torstensson Date: Mon, 15 Apr 2002 05:21:13 +0000 (-0000) Subject: 2002-04-15 Patrik Torstensson X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=3d6450fc0f6ef844132dd195a261c762e38eb327;p=mono.git 2002-04-15 Patrik Torstensson * Test for AppDomain support in thread svn path=/trunk/mono/; revision=3821 --- diff --git a/mono/tests/thread4.cs b/mono/tests/thread4.cs new file mode 100644 index 00000000000..a31d14eb8e5 --- /dev/null +++ b/mono/tests/thread4.cs @@ -0,0 +1,16 @@ + +using System; +using System.Threading; + +public class Test { + + public static int Main () { + Console.WriteLine ("Starting test\n"); + + Console.WriteLine("Domain name: {0}\n", Thread.GetDomain().FriendlyName); + Console.WriteLine("Domain id: {0}\n", Thread.GetDomainID().ToString()); + + return 0; + } +} +