本文介绍了转换stringdate =" YYYYMMDD"到约会时间......的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我这样做时,我不能得到约会,因为是incorect格式。我尝试了一切。有人有解决方案吗?
我尝试了什么:
When I do this i cant get date because is incorect format. I try everything. Someone have solution?
What I have tried:
DateTime d;
string dateTimeFormat = "yyyymmdd";
string strdate = "20180521";
d = DateTime.ParseExact(strdate , dateTimeFormat, CultureInfo.CurrentCulture)
推荐答案
string dateTimeFormat = "yyyyMMdd";
Quote:
m
自定义格式说明符将分钟表示为0到59之间的数字。
M
自定义格式说明符将月份表示为1到12之间的数字(或从1到13表示日历)有13个月的时间。
The "m
" custom format specifier represents the minute as a number from 0 through 59.
The "M
" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months).
结论:格式区分大小写。
Conclusion: format is case sensitive.
这篇关于转换stringdate =" YYYYMMDD"到约会时间......的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!