How do I get a dattime format in C# that will look like this:
2011-09-01 00:00:00:000
If you want the time included, use: "yyyy-MM-dd hh:mm:ss:fff"
"yyyy-MM-dd hh:mm:ss:fff"
If you don't want the time included, use: "yyyy-MM-dd \"00:00:00:000\""
"yyyy-MM-dd \"00:00:00:000\""