如何将下面的字符串转换为C#中的DateTime实例?
Wed Sep 04 2013 00:00:00 GMT + 0530(斯里兰卡标准时间)
答案 0 :(得分:0)
您可以使用ParseExact
string date = "Wed Sep 04 2013 00:00:00 GMT+0530";
var datex = DateTime.ParseExact(date, "ddd MMM dd yyyy hh:mm:ss GMT+0530", CultureInfo.InvariantCulture);