In a string variable I have date in following format : Tue Jul 23 00:00:00 UTC+0530 2013
I tried to convert it into a datetime variable , and got invalid date time error.
DateTime dt = DateTime.Parse(t);
How can I convert into a DateTime
format?