I have a string
Tue May 13 2014 00:00:00 GMT+0700 (SE Asia Standard Time)
I want to convert to DateTime in C#. I use:
Convert.ToDateTime and DateTime.ParseExact("Tue May 13 2014 00:00:00 GMT+0700 (SE Asia Standard Time)","ddd MMM dd yyyy HH:mm:ss GMT+zzzz",System.Globalization.CultureInfo.InvariantCulture)
but it is not work :(
Please help me solve this issue.
Thanks so much.