C# 中的时间跨度转换为 int?不知何故?

发布于 2024-08-28 07:13:42 字数 99 浏览 6 评论 0原文

我正在尝试使用 Timespan 类创建开始时间和停止时间,获取差异并最终将结果除以并乘以另一个数字。

问题是进入一些我可以合作的事情。

有什么建议吗?

I'm trying to use the Timespan class to create a start time and a stop time, get the difference and ultimately dividing and multiplying the result against another number.

The problem is getting into something I can work with.

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一片旧的回忆 2024-09-04 07:13:42

TimeSpan 类有许多可以提供帮助的成员,例如 TotalSeconds、TotalMinutes、TotalHours 等。

如果您想知道每秒的操作数,请将操作数除以 TimeSpan 对象的 TotalSeconds 成员。

The TimeSpan class has a number of members which might be able to assist, for instance TotalSeconds, TotalMinutes, TotalHours etc.

If you want to know the number of operations per second, divide the number of operations by the TotalSeconds member of the TimeSpan object.

浮生未歇 2024-09-04 07:13:42

如果您尝试测量代码运行时间,stopwatch< /a> 类可能更合适。

If you're trying to measure code running time, the stopwatch class might be more appropriate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文