using System;
using System.Threading;
public class Program
{
public static void Main()
new Thread(Go).Start();
Go();
}
public static void Go()
for(int cycle = 0; cycle < 100; cycle++)
Console.WriteLine("This is a thread cycle number: " + cycle);