VB2010中线程的Resume()和Suspend()方法已过时?解决思路
VB2010中线程的Resume()和Suspend()方法已过时?用VB2010写的代码在调用多线程的Resume()和Suspend()方法后
VB2010中线程的Resume()和Suspend()方法已过时?
用VB2010写的代码在调用多线程的Resume()和Suspend()方法后有警告显示这两种方法已过时,需要用什么方法来替换?
[解决办法]
做个全局变量
private bool _isSuspend = false
线程中:
while(_isSuspend)
{
Thread.Sleep(100);
}
[解决办法]