让程序延迟n秒(进程并没有停止,只是在磨蹭时间)
DateTime dt = DateTime.Now.AddSeconds(n); while (DateTime.Now < dt) { ...... }