How can I convert dates like \"Jun 17 2009, 03:37 pm ET\" into a DateTime variable using C#?
DateTime
I have tried DateTime.ParseExact but I haven\'
DateTime.ParseExact
Have you tried DateTime.Parse()? I ususally find that it is not necessary to specify the format unless there is some abiguity between what number is the month and what number is the day.
DateTime.Parse()