你这总代码也是醉了。把你电脑的日期格式设置一下,
excel的日期格式设置了的
excel的时间格式也不贴出来,
DateTime.Parse重载方法有很多,也不看看是不是符合条件
string mytime = "01-5月-2017"; IFormatProvider culture = new CultureInfo("zh-CN", true); string[] expectedFormats = { "dd-M月-yyyy" }; DateTime dt = DateTime.ParseExact(mytime, expectedFormats, culture, DateTimeStyles.AllowInnerWhite);
供参考
http://git.oschina.net/lishilei0523/SD.Toolkits
里有有我写好的Excel工具,参考下