tags:

views:

75

answers:

1

I want to use Date.ToShortDateString() but make it spit out the date in US format. Is this possible....

+11  A: 
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");
Console.WriteLine(dateToDisplay.ToShortDateString());

or

Console.WriteLine(dateToDisplay.ToString("d", new CultureInfo("en-US")));
dtb
short and to the point. +1
Isak Savo
Top marks for speed :-)
AJM