I am currently looping through a csv file which has numerous dates on various lines, I've managed to split and extract what i want however i have a DateTime format issue. Here is my line of code:
current = DateTime.ParseExact(line[0], "dd/MM/yyyy HH:mm:ss.fff", null);
The actual string which is split and read from the csv is:
"20/12/2012 13:08:18.980"
I am calculating the difference between the two DateTimes (in milliseconds). When I'm debugging and looking at the locals this is what appears for the DateTime "current":
current {20/12/2012 13:08:18} System.DateTime
as you can see it doesn't give me milliseconds hence my TimeSpan difference calculation gets thwarted. Please help.
"/"and":"inside your format string depends on the current culture. If the culture is Bengali (India), that isnew CultureInfo("bn-IN"), the contents of the CVS file will have to be like:"20-12-2012 13.08.18.980"for your code to still work. – Jeppe Stig Nielsen Jan 26 at 18:56