Datetime string formatting and CultureInfo
- by fearofawhackplanet
I was suprised to see FxCop complaining that I wasn't specifying a CultureInfo in the following:
string s = day.ToString("ddd");
Surely the format string param in ToString is completely independent of CultureInfo? Is there any way which CultureInfo could affect the returned string?