本文实例讲述了C#实现程序等待延迟执行的方法。分享给大家供大家参考。具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[System.Runtime.InteropServices.DllImport( "kernel32.dll" )]
static extern uint GetTickCount();
/// <summary>
/// 程序等待延迟执行
/// </summary>
/// <param name="ms"></param>
static void MySleep( uint ms)
{
uint start = GetTickCount();
while (GetTickCount() - start < ms)
{
Application.DoEvents();
}
}
|
希望本文所述对大家的C#程序设计有所帮助。