I have this string:
Fri, 13 Jan 2012 04:26:42 PST
I tries to parse it like that:
DateTime.TryParse("Fri, 13 Jan 2012 04:26:42 PST", out date)
Or like that:
Convert.ToDateTime("Fri, 13 Jan 2012 04:26:42 PST")
And it throws to me:
MESSAGE: The string was not recognized as a valid DateTime. There is an unknown word starting at index 26.
Any idea what is wrong and how can I fix it?
PSTis not recognized as a valid part of aDateTimestring. – Oded Jan 14 at 11:00+0700or-00:30, for example. The .NET framework does not recognize named timezones likePSTorGMT. – Oded Jan 14 at 11:04