using System.Collections.Generic;
namespace ConsoleApplication1
public static void Main(string[] args)
Thread.CurrentThread.Name = " eat ";
Thread worker = new Thread(Go);
Thread sleep = new Thread(Go);
Console.WriteLine(" Start to" + Thread.CurrentThread.Name);