Skip to content

Instantly share code, notes, and snippets.

@abhijeetbhagat
Created February 5, 2016 18:03
Show Gist options
  • Save abhijeetbhagat/164c36f993a9269d2e0b to your computer and use it in GitHub Desktop.
Save abhijeetbhagat/164c36f993a9269d2e0b to your computer and use it in GitHub Desktop.
using System;
using System.Threading;
class ThreadTest{
static int Main(){
var t = new Thread(()=>Console.WriteLine("abhi"));
t.Start();
t = new Thread(go);
t.Start();
return 0;
}
static void go(){
Console.WriteLine("rocks");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment