C# 中的时间跨度转换为 int?不知何故?
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
如果您尝试测量代码运行时间,stopwatch< /a> 类可能更合适。
If you're trying to measure code running time, the stopwatch class might be more appropriate.