How do you convert a string such as 2009-05-08 14:40:52,531 into a DateTime?
2009-05-08 14:40:52,531
DateTime
Try the below, where strDate is your date in 'MM/dd/yyyy' format
var date = DateTime.Parse(strDate,new CultureInfo("en-US", true))