what is the exact error you are getting
you can use DateTime.ParseExact() to parse it to the exact date you want however there still maybe an exception thrown if the arguments are invalid.
DateTime myDateTime = DateTime.ParseExact(cRow[11].ToString(), "dd/MM/yyyy", new System.Globalization.CultureInfo("cultureHere"));
http://msdn2.microsoft.com/en-us/library/w2sa9yss.aspx
|