C# 计时器 //初始化计时器Stopwatch sw = new Stopwatch();//开始sw.Start();//停止sw.Stop();//获取毫秒sw.ElapsedMilliseconds + \"毫秒\";