Does anybody know how to display
the date of a datetime based on a CurrentCulture but the Time follow this pattern "HH:mm:ss.fff"
?
I've tried to use:
DateTime NewDate = DateTime.Now;
NewDate.ToString(CultureInfo.CurrentCulture);
It results: 4-6-2010 14:49:41.
Expected: 4-6-2010 14.49.41,495.
For the Time, I also need to show the miliseconds but the Date format must be still based on the culture.