如何在我的流程中使用性能计数器? C#
我有一个应用程序,我需要在结束时显示该过程的总时间。
我正在使用 Swith 案例,
case "4":
Console.WriteLine("Generating file..." + "\n");
_loader.GenerateBinaryLog(filePath, logSelected);
Console.WriteLine("File Generated: " + _writer.getBinaryFileName(filePath, Convert.ToInt32(logSelected)) + "\n");
logSelected = "-1";
Console.ReadKey();
break;
因此,当进程结束时,我需要显示消息和类似这样的内容:“进程在 30 秒内完成”...
I have an application , and I need to show the total time of the process when this ends.
I am using the Swith case,
case "4":
Console.WriteLine("Generating file..." + "\n");
_loader.GenerateBinaryLog(filePath, logSelected);
Console.WriteLine("File Generated: " + _writer.getBinaryFileName(filePath, Convert.ToInt32(logSelected)) + "\n");
logSelected = "-1";
Console.ReadKey();
break;
So, when the process ends I need to show the message and something like this: "process finished in 30 seconds"...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该使用
Stopwatch
类:You should use the
Stopwatch
class:您不需要性能计数器。
您可以使用秒表,
You don't need a performance counter.
You can use a Stopwatch,
您不需要性能计数器即可将此信息放在控制台上:使用 秒表。
You don't need a performance counter to just put this info on the console: use a Stopwatch.