This question already has answers here:
Is DateTime.Now the best way to measure a function's performance? [closed]
(16个答案)
7年前关闭。
显然我可以和
任何提示表示赞赏。 Is DateTime.Now the best way to measure a function’s performance? High resolution timer in .NET Environment.TickCount vs DateTime.Now What’s the best way to benchmark programs in Windows?
(16个答案)
7年前关闭。
显然我可以和
DateTime.Now.After
-DateTime.Now.Before
一起做,但是必须有一些更复杂的东西。任何提示表示赞赏。
最佳答案
System.Environment.TickCount和System.Diagnostics.Stopwatch类是两个很好的解决方案,它们可用于更好的分辨率和简单的用法。
也可以看看: