gpt4 book ai didi

c# - 如何将一个小时添加到时间跨度。 C#

转载 作者:IT王子 更新时间:2023-10-29 04:45:45 24 4
gpt4 key购买 nike

出于特定原因,我有我的 TimeSpan,因此它必须采用该格式。我想在当前时间上加一个小时。这是我得到的,但不起作用:

TimeSpan time1= TimeSpan.FromHours(1); // my attempt to add 2 hours
TimeSpan ts = DateTime.Now.TimeOfDay;
ts.Add(time1);
MessageBox.Show(ts.ToString()); // for showing me its result

能请教一下吗?

最佳答案

ts += TimeSpan.FromHours(1);

好了!

关于c# - 如何将一个小时添加到时间跨度。 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18746645/

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