c# create new thread

58

c# create new thread -

using System.Threading;

Thread thread = new Thread(new ThreadStart(WorkThreadFunction));
thread.Start();

Comments

Submit
0 Comments