How can I convert this string, 12:00 AM
, into a DateTime?
views:
61answers:
1
+1
A:
DateTime.Parse("12:00AM");
NOTE:
The date part will be the current date.
ChaosPandion
2009-12-06 06:28:03