using System; using System.Threading; class ThreadTest { public void runme() { Console.WriteLine("Runme Called"); } public static void Main(String[] args) { ThreadTest b = new ThreadTest(); Thread t = new Thread(new ThreadStart(b.runme)); t.Start(); } }
Tuesday, November 20, 2012
Is there any sample C# code for simple threading?
Name skumardotnet
Posted at 1:22 AM
Tags
Subscribe to:
Post Comments (Atom)
EmoticonEmoticon