vinod 0
How do you create thread in.NET?
By vinod 0 in Multithreading on Nov 28 2006
  • manikanta
    Nov, 2006 29

    using System.Thearding //add this namespace. .. .. //part atr which to create a thread . first find the function which to be executed in new thread. it should be of the form public void funname();.. now create delegate of type ThreadStart. ThreadStart startmethod= new ThreadStart(funname); and assign now create thread Thread mythread = new Thread(startmethod); now call the start method of thread.. mythread.start();

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS