Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / thread4.cs
1 \r
2 using System;\r
3 using System.Threading;\r
4 \r
5 public class Test {\r
6         \r
7         public static int Main () {\r
8                 Console.WriteLine ("Starting test\n");\r
9 \r
10                 Console.WriteLine("Domain name: {0}\n", Thread.GetDomain().FriendlyName);\r
11                 Console.WriteLine("Domain id: {0}\n", Thread.GetDomainID().ToString());\r
12                 \r
13                 return 0;\r
14         }\r
15 }\r
16 \r