C#用两个线程同时遍历一个字符串数组

2024-12-28 03:35:05
推荐回答(1个)
回答1:

Thread t1=new Thread(threadMethod);
Thread t2=new Thread(threadMethod);
t1.Start();
t2.Start();