I am trying to convert string into DateTime object with format dd/mm/yyyy without time. but it comes with time. And also month changed to 01. The following is my coding.
dateString = "4/11/2014"
DateTime date = DateTime.ParseExact(dateString,"d/mm/yyyy",null);
Debug.WriteLine("date:" + date);
output is 4/01/2014 12:03:00 AM
If you have any idea, I appreciate very much.