gpt4 book ai didi

c# - 如何使用 Stopwatch() 显示分钟和秒

转载 作者:IT王子 更新时间:2023-10-29 03:51:35 26 4
gpt4 key购买 nike

我还需要显示分钟,实际上我用这段代码来显示秒,但也需要分钟

TimeSpan ts = stopwatch.Elapsed;
Console.WriteLine("File Generated: " + _writer.getBinaryFileName(filePath, Convert.ToInt32(logSelected)) + " in " + "{0}.{1:D2}" + "seconds",
ts.Seconds,
ts.Milliseconds/10 + "\n"
);

我该怎么办?

最佳答案

你应该使用:

ts.ToString("mm\\:ss\\.ff")

这将为您提供时间间隔中的分钟、秒和百分之一秒。

也看看http://msdn.microsoft.com/en-us/library/ee372287.aspx

已编辑:好吧,如果你想让分钟数成为最大的单位,你可以执行以下操作:

string.Format("{0}:{1}", Math.Floor(ts.TotalMinutes), ts.ToString("ss\\.ff"))

关于c# - 如何使用 Stopwatch() 显示分钟和秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5709304/

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