本文介绍了日期时间格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我调用的DateTime的ToString方法我得到后续的字符串2010年5月17日8时05分22秒。
是否有任何其他DateTime格式在那里我可以用零前8小时要做后续的字符串2010年5月17日8时05分22秒?
解决方案
someDateInstance.ToString(DD.MM.YYYY HH:MM:SS)
When i invoke ToString method of DateTime i get the follow string "17.05.2010 8:05:22".Is there any other DateTime format where i can get the follow string "17.05.2010 08:05:22" with zero before eight hours?
解决方案
someDateInstance.ToString("dd.MM.yyyy HH:mm:ss")
这篇关于日期时间格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!