Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个Decimal值表示时间间隔中的小数小时数。
Decimal
现在我需要将此值与 a 相加TimeSpan,但我找不到有效的方法来做到这一点。
TimeSpan
目前,我的解决方案是执行以下操作:
myTimeSpan + new TimeSpan(0, 0, Math.Abs(decimalHours * 3600))
有没有更好的方法来解决我的问题?
怎么样
myTimeSPan + TimeSpan.FromHours((double)decimalHours);