我有眼光的时段:
“1 2009 2300”,“1 14 2009 0”, “1 14 2009 100
因此,我需要把时间划入。
我已尝试:
string[] sExpectedFormats = {"M d yyyy Hmm", "M d yyyy hmm", "M d yyyy 0"};
DateTime dtReportDateTime = DateTime.ParseExact(sReportDateTime,
sExpectedFormats,
System.Globalization.CultureInfo.InvariantCulture,
System.Globalization.DateTimeStyles.None);
但它未能做到第三点“2009年1月14日100”。 我不清楚为此使用何种形式?
为了澄清,我把这一数据作为“1 14”和“100”时间段获取,因此,我可以将其整理成一个日期。
增 编