c# – 如何将TimeSpan转换为24小时和分钟字符串?

c# – 如何将TimeSpan转换为24小时和分钟字符串?,第1张

概述我使用这个代码将Timespan转换为String(例如:14:53): myTimeSpan.ToString("hh:mm"); 但是发生这个错误: Input string was not in a correct format 这样做的正确方法是什么? myTimeSpan.ToString(@"hh\:mm") Custom TimeSpan Format Strings The cus 我使用这个代码将Timespan转换为String(例如:14:53):
myTimeSpan.ToString("hh:mm");

但是发生这个错误:

input string was not in a correct format

这样做的正确方法是什么?

解决方法
myTimeSpan.ToString(@"hh\:mm")

Custom TimeSpan Format Strings

The custom TimeSpan format specifIErs do not include placeholder separator symbols,such as the symbols that separate days from hours,hours from minutes,or seconds from fractional seconds. Instead,these symbols must be included in the custom format string as string literals. For example,“dd.hh\:mm” defines a period (.) as the separator between days and hours,and a colon (:) as the separator between hours and minutes.

总结

以上是内存溢出为你收集整理的c# – 如何将TimeSpan转换为24小时和分钟字符串?全部内容,希望文章能够帮你解决c# – 如何将TimeSpan转换为24小时和分钟字符串?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1241592.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存