c# create new thread

56

c# create new thread -

using System.Threading;

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

Comments

Submit
0 Comments