DateTime.Parse(string)'抛出类型'System.FormatException'的异常'System.DateTime {System.FormatException}

时间:2012-11-19 09:16:11

标签: datetime

DateTime.Parse(string)针对不同的文化提出了System.FormatException System.DateTime {System.FormatException}类型的例外情况。

有没有办法将存储在字符串中的日期从任何文化转换为日期时间格式?

1 个答案:

答案 0 :(得分:0)

System.Globalization.CultureInfo cultureinfo =  new System.Globalization.CultureInfo("en-gb");
DateTime dt = DateTime.Parse("13/12/2009", cultureinfo);