当我运行时:
Date.Parse(Now.ToString("M/yy/d"), New Globalization.DateTimeFormatInfo() With {.ShortDatePattern = "M/yy/d"})
我收到错误消息:
Could not determine the order of year, month, and date from 'M/yy/d'.
这种(奇怪的)格式是否被禁止?它是一个错误吗?
注意
我不知道为什么需要这种格式。
编辑
建议Date.ParseExact(Now.ToString("M/yy/d"), "M/yy/d",New Globalization.DateTimeFormatInfo() )
给出:
String was not recognized as a valid DateTime.
Edit2
我正在使用 NET Framework 4.0(Windows)。