分析C#中的DateTime问题
本文关键字:问题 DateTime 中的 分析 | 更新日期: 2023-09-27 18:24:45
如何在Linux环境中解析从WebSphere接收的c#DateTime对象中的以下日期时间字符串。
string serverDate = "Sat Nov 03 13:03:13 GMT+05:30 2012"
试试这个:
string serverDate = "Sat Nov 03 13:03:13 GMT+05:30 2012";
var date = DateTime.ParseExact(serverDate, @"ddd MMM dd HH:mm:ss 'G'M'TK yyyy", CultureInfo.InvariantCulture);
请注意我是如何分别逃离每个"GMT"字符的。