I\'m currently working in another country, and my PC has a non-English version of Windows installed. I don\'t care about this, but I do care a lot when Visual Studio shows e
As I posted in another thread, in my case it took only one line of code to change the Culture:
System.Globalization.CultureInfo.DefaultThreadCurrentUICulture=System.Globalization.CultureInfo.GetCultureInfo("en-US");
It changes default Culture of Main thread and new ones as well.