How to Convert string “07:35” (HH:MM) to TimeSpan

后端 未结 4 513
我寻月下人不归
我寻月下人不归 2020-11-28 09:19

I would like to know if there is a way to convert a 24 Hour time formatted string to a TimeSpan.

Right now I have a \"old fashion style\":

string str         


        
4条回答
  •  情书的邮戳
    2020-11-28 09:38

    Use TimeSpan.Parse to convert the string

    http://msdn.microsoft.com/en-us/library/system.timespan.parse(v=vs.110).aspx

提交回复
热议问题