Iam reading from an excel file 2 columns:
One column has value: 07/11/2012
2nd column has value: 18:45
When I read the 2nd column, it shows actually a default date in front of it. dr[3].ToString() "30/12/1899 6:45:00 PM" string
I want to join the first column with the second. but right now I have the normal input format exception
I tried to remove the date part from the second column with string manipulation
here is my code
DateTime dateEvent = DateTime.Parse(dr[1].ToString());
dateEvent.Add(TimeSpan.Parse(dr[3].ToString().Substring(dr[3].ToString().IndexOf(" ")+1)));
Udpate 1:
DateTime dateEvent = DateTime.ParseExact(string.Format("{0} {1}", dr[1].ToString(), dr[3].ToString().IndexOf(" ") + 1), "dd/MM/yyyy HH:mm", CultureInfo.InvariantCulture);