C#方法总结hh:mm数据???

时间:2010-05-20 06:49:44

标签: c# datetime time timespan date-math

我想要一种方法,它将以hh:mm(时间小时和分钟)格式对字符串数据进行求和

0:15 + 0:15 = 0:30

1 个答案:

答案 0 :(得分:16)

将字符串转换为TimeSpan s,然后调用.Add方法。

TimeSpan s1 = TimeSpan.Parse("0:15");
TimeSpan s2 = TimeSpan.Parse("0:45");

TimeSpan s3 = s1 + s2;

// not tested; should work.

参考:http://msdn.microsoft.com/en-us/library/system.timespan.aspx