using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace ConsoleApplicationl
{
class Program
static void Main(string[] args)
Thread.CurrentThread.Name="eat";
Thread worker=new Thread(Go);
worker.Name="run";
worker.Start();
Go();
Thread workerl=new Thread(Go);
workerl.Name="sleep";
workerl.Start();
Console.ReadKey();
}
static void Go()
Console.WriteLine("Start to"+Thread.CurrentThread.Name);