我有一个看起来像这样的日期时间:
201210120956
ccyyMMDDhhmm
当我尝试这个时:
Dim convertedDate As Date = Date.Parse(DateString)
Return convertedDate
我回来了:
#10/12/2012#
我正在浪费时间。
我已经阅读了这个将字符串转换为日期时间的 vb.net,但是当我使用时,datetime.ParseExact()
我得到:
无法解析符号“ParseExact”
有没有办法在不使用子字符串的情况下将其转换为日期时间?直接转换?