gpt4 book ai didi

c# - 将字符串转换为 TimeSpan

转载 作者:太空宇宙 更新时间:2023-11-03 17:17:24 24 4
gpt4 key购买 nike

我需要将其转换为时间跨度:

  • 8
  • 8.3
  • 8.15

当我这样做时:

DateTime s = booking.TourStartDate.Add(TimeSpan.Parse(booking.TourStartTime.Replace(".", ":")));

它最终会在天数中添加“10”(上午 10 点),而不是现在的时间,尽管这是一种愚蠢的格式。

最佳答案

您可以尝试以下方法:

var ts = TimeSpan.ParseExact("0:0", @"h\:m",
CultureInfo.InvariantCulture);

关于c# - 将字符串转换为 TimeSpan,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17682099/

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