延时程序

//延时程序
private static void Delay(int millisecond)
{
int start = Environment.TickCount;
while (Math.Abs(Environment.TickCount - start) < millisecond)
{
}
}

posted @ 2021-06-11 14:38  三竺  阅读(109)  评论(0)    收藏  举报