如何在 C# 中仅添加时间
我需要对我的水晶报告进行计算。
在报告中,会有像这样的时间(以小时:分:秒为单位)..
00:12:34
00:52:12
23:19:56
等等..
我需要将它们加在一起,以便..结果将是
Hr:min:ss
Hr 可能超过 100..
但无法更改为 day
如何实现这一点?
多谢..
I need to do a calculation for my crystal report.
In report, there will be Times(in Hour:Min:Sec)like this..
00:12:34
00:52:12
23:19:56
and so on..
I need to add them together so that..results will be
Hr:min:ss
Hr may be more than 100..
but can't change to day
How to achieve that?
Thanks a lot..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样查找 TimeSpan.Parse 方法。
Look up the TimeSpan.Parse method like this.
如果你得到 hh:mm:ss,那么这就会很容易:
然后从中得到小时、分钟和秒。
如果您获取
DateTime
对象,那么您可以获得小时、分钟并将它们转换为秒,并使用与上述相同的技术。It you are getting hh:mm:ss only then this will be easy:
and then get hours, mins and seconds from it.
If you are getting
DateTime
object then you can get hours, mins and convert them to seconds and use same technique as above.