gpt4 book ai didi

c# - 简单的时间剖析 - 奇怪的时间

转载 作者:行者123 更新时间:2023-11-30 18:50:15 25 4
gpt4 key购买 nike

我正在尝试分析我的代码以检查执行我的代码的某些部分需要多长时间。

我将代码中最耗时的部分包装成类似这样的东西:

DateTime start = DateTime.Now;
...
... // Here comes the time-consuming part
...
Console.WriteLine((DateTime.Now - start).Miliseconds);

程序正在执行这部分代码几秒钟(大约 20 秒),但在控制台中我得到大约 800 毫秒的结果。为什么会这样?我究竟做错了什么?

最佳答案

尝试使用 Stopwatch为此上课。它正是为了这个目的而设计的。

Stopwatch sw = Stopwatch.StartNew();
// ...
// Here comes the time-consuming part
// ...
sw.Stop();
Console.WriteLine(sw.ElapsedMilliseconds);

关于c# - 简单的时间剖析 - 奇怪的时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2740513/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com