C# stopwatch记录运行时间

2021-03-01 03:26

阅读:638

标签:star   mil   member   work   bsp   记录   rgba   stopwatch   start   

///
/// 运行时间
///

[ProtoMember(46)]public long WorkTime;

 

Stopwatch stopwatch = new Stopwatch(); // 记录运行时间
stopwatch.Start();
。。。// 运行的代码

stopwatch.Stop();
WorkTime = stopwatch.ElapsedMilliseconds;

 

 

C# stopwatch记录运行时间

标签:star   mil   member   work   bsp   记录   rgba   stopwatch   start   

原文地址:https://www.cnblogs.com/qq2806933146xiaobai/p/14455148.html


评论


亲,登录后才可以留言!