计算程序段运行时间

计算代码段运行的时间长度,用Stopwatch类

1 Stopwatch sw  =   new  Stopwatch();
2 sw.Start();
3 Thread.Sleep( 3000 );
4 sw.Stop();
5 Console.WriteLine(sw.ElapsedMilliseconds());

每次获取时间都要写这么几行,为此封装一个计算时间的类

 

Code

 

调用的时候:

 

1 using  (RunningTimer timer  =   new  RunningTimer( " test " ))
2 {
3    Thread.Sleep(3000);
4}

 

你可能感兴趣的:(时间)