Hi
I use a StopWatch and in the end it creates the following time String
string elapsedTime = String.Format("{0:00}:{1:00},{2:000}",
ts.Minutes, ts.Seconds,
ts.Milliseconds);
Now I would like to parse it in an DateTime variable ...
DateTime SpTime = DateTime.ParseExact(elapsedTime, "mm, ss, fff", null);
But it didn't work - System.FormatException
Any help?