在windows 控制台代码中的时间提示语句,用于提示已经用时多久的。
Stopwatch sw = new Stopwatch();
sw.Start();
//自己的逻辑.
sw.Stop();
var totalTime = sw.ElapsedMilliseconds; //单位是毫秒