views:

61

answers:

1

How can I convert this string, 12:00 AM, into a DateTime?

+1  A: 
DateTime.Parse("12:00AM");

NOTE:

The date part will be the current date.

ChaosPandion