完全搞砸了 Lotus Notes DXL 时间戳格式...给出的是从 Lotus Notes 文档导出的 DXL 的时间戳,如下所示:
20141104T132939,49+01
尝试使格式与 . 一起使用DateTime.ParseExact
,例如:
DateTime.ParseExact(dateStr.Substring(0, 13), "yyyyMMddThhmm", System.Globalization.CultureInfo.InvariantCulture).ToString("dd.MM.yyyy hh:mm");
但是没有运气>>> System.FormatException "no valid DateTime format"
。
C# 可以按原样处理上述时间戳吗?