using System;
using System.Threading;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
Thread[] arr = new Thread[3];
for (int i = 0; i < arr.Length; i++)
{
ThreadStart ts = new ThreadStart(Method);
arr[i] = new Thread(ts);
arr[i].Start();
}
Console.WriteLine("END");
}
static void Method()
{
Thread.Sleep(500);
Console.WriteLine("Method()");
}
}
}
/*
run:
END
Method()
Method()
Method()
*/