I have a string in this format:
"Fri, 18 Mar 2011 18:53:15 EDT"
I want to convert this to datetime object, the problem is with EDT, at the end. If I use GMT DateTime.TryParse works fine, but if it is something else like EDT, it return false.
I have a string in this format:
"Fri, 18 Mar 2011 18:53:15 EDT"
I want to convert this to datetime object, the problem is with EDT, at the end. If I use GMT DateTime.TryParse works fine, but if it is something else like EDT, it return false.
Check out the TimeZoneInfo class and this question, or the definitive time zone guide.