2010-04-19 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / tests / thread4.cs
bloba31d14eb8e525b29a47bcb99b38e9c5e7876ad4c
2 using System;
3 using System.Threading;
5 public class Test {
7 public static int Main () {
8 Console.WriteLine ("Starting test\n");
10 Console.WriteLine("Domain name: {0}\n", Thread.GetDomain().FriendlyName);
11 Console.WriteLine("Domain id: {0}\n", Thread.GetDomainID().ToString());
13 return 0;