当前位置:  开发笔记 > 编程语言 > 正文

如何读取时间值,然后将其插入TimeSpan变量中

如何解决《如何读取时间值,然后将其插入TimeSpan变量中》经验,为你挑选了1个好方法。

如何读取时间值然后将其插入TimeSpan变量?



1> VVS..:

如果我理解正确,你试图以"08:00"的形式获得一些用户输入,并希望将时间存储在时间跨度变量中?

那么..这样的事情?

string input = "08:00";
DateTime time;
if (!DateTime.TryParse(input, out time))
{
    // invalid input
    return;
}

TimeSpan timeSpan = new TimeSpan(time.Hour, time.Minute, time.Second);

推荐阅读
路人甲
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有