public static void Main()
Thread[] threads = new Thread[5];
for (int i = 0; i < threads.Length; i++)
threads[i] = new Thread(Test);
for (int i = 0; i < threads.Length; i++)
for (int i = 0; i < threads.Length; i++)
private static void Test()
Console.WriteLine("FINISH");