2、//创建计时器,用来记录程序运行时间
Stopwatch sw=new stopwatch();
sw.start();
想计时的程序段
sw.stop();
//显示计时器时间. Elapsed:消逝
Console.writeline(sw.elapsed);
有地方未区分大小写,自己打一遍就可以了。
2、//创建计时器,用来记录程序运行时间
Stopwatch sw=new stopwatch();
sw.start();
想计时的程序段
sw.stop();
//显示计时器时间. Elapsed:消逝
Console.writeline(sw.elapsed);
有地方未区分大小写,自己打一遍就可以了。