VB2008 暂停程序执行的方法及注意事项

Posted by Admin L in .NET Programming on 17-07-2011. Tags:

作者:牧山道人
原文地址:https://www.seeksunslowly.com/vb2008-pause-program-note-sc
转载请注明出处,谢谢。
_____________________________________

方法很简单,使用 Thread 类的 Sleep(n) 函数即可实现(n 的单位为毫秒,1 分钟 = 1 * 60 * 1000)。
但有个注意事项需要告知大家:
System.Threading.Thread.Sleep(n)

System.Threading.Thread.CurrentThread.Sleep(n)
其实是等价的,不要被 CurrentThread 字眼迷惑了。
所以,没必要经由 CurrentThread 来调用,后者也不被 Visual Studio 建议。

【赞赏 / Reward】

微信         支付宝         PayPal

Post a comment