I want a method that will sum data that is string in the format hh:mm (time hours and minutes)
0:15 + 0:15 = 0:30
Convert the strings to TimeSpan
s and then call the .Add
method.
TimeSpan s1 = TimeSpan.Parse("0:15");
TimeSpan s2 = TimeSpan.Parse("0:45");
TimeSpan s3 = s1 + s2;
// not tested; should work.
Ref: http://msdn.microsoft.com/en-us/library/system.timespan.aspx
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With