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
Trackback address for this post
Trackback URL (right click and copy shortcut/link location)
Feedback awaiting moderation
This post has 29 feedbacks awaiting moderation...
Form is loading...