gpt4 book ai didi

c# - 我的代码需要多长时间才能运行?

转载 作者:太空狗 更新时间:2023-10-29 17:28:09 26 4
gpt4 key购买 nike

我如何知道我的 C# 代码运行需要多少时间?

最佳答案

查看 Stopwatch类:

Stopwatch sw = new Stopwatch();
sw.Start();

// your code here

sw.Stop();
TimeSpan elapsedTime = sw.Elapsed;

关于c# - 我的代码需要多长时间才能运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1285052/

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