Archives for: "May 2006, 25"
Threading in .Net is simple
Thread is very simple. Only need to put the method name and use "Start" method. Thread thread= new Thread(new ThreadStart(class1.Test2)); thread.Start(); There is an exmple, click here more »