TimeSpan默认值格式

时间:2014-12-30 06:33:46

标签: c# class timespan

我不知道如何将时间值硬编码到timepan数据类型中?我该怎么做呢?我的错误是它不接受' 00'对于时间跨度值。时钟是。日期也会奏效。

比如,我是否使用括号使该类接受 13:00hrs 或我该怎么做?

AddTime new1 = new AddTime(23 / 01 / 2015, 13:00);

1 个答案:

答案 0 :(得分:2)

// Use TimeSpan constructor to specify:
// ... Days, hours, minutes, seconds, milliseconds.
// ... The TimeSpan returned has those values.
TimeSpan span = new TimeSpan(0, 0, 13, 0, 0);
Console.WriteLine(span);

http://www.dotnetperls.com/timespan