Skip to content

Instantly share code, notes, and snippets.

@psurikov
Created August 29, 2011 13:28
Show Gist options
  • Save psurikov/1178389 to your computer and use it in GitHub Desktop.
Save psurikov/1178389 to your computer and use it in GitHub Desktop.
class Program
{
static Program()
{
var thread = new Thread(o => { });
thread.Start();
thread.Join();
}
static void Main()
{
Console.WriteLine("Hello!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment