Exemplo n.º 1
0
 static void Main(string[] args)
 {
     Top t = new Top();
     ThreadStart ts = new ThreadStart(t.SayHello);
     Thread thread = new Thread(ts);
     thread.Start();
     Console.Write("Thread + " + Thread.CurrentThread.GetHashCode() + "메인 종료\n");
 }