动漫人物
using System;using System.Windows.Forms;using System.Threading;namespace MyProject{public class Util{//延时函数public static void Delay(int DelayTime = 100){int time = Environment.TickCount;while (true){if (Environment.TickCount - time >= DelayTime){break;}Application.DoEvents();Thread.Sleep(10);}}}}