Paradigm shift may be a bit lofty but you are correct
- in Whidbey, we've made the default CurrentThread.CurrentCulture read-only.
You can, however, clone a copy, make modifications, and set the CurrentThread.CurrentCulture.
try the following:
CultureInfo newCI = (CultureInfo)System.Threading.Thread.CurrentThread.CurrentCulture.Clone();
newCI.Calendar.TwoDigitYearMax = 2050;
System.Threading.Thread.CurrentThread.CurrentCulture = newCI;
hope this helps,
-M