I am using VS2012, .net 4.5 and Win7 Professional. Win7 is Turkish and now I am getting error messages in Turkish! In Win7 Professional it is not possible to install/uninstall language pack. Is it possible to change the error message language without reinstalling VS or .net pack?
This worked for me:
Start > Configuration Panel > Language and region > Administration
In the tab "Languages for non unicode programs", choose English.
You also have the option to set the CultureInfo in the part of code where you are debugging / logging. Just play a bit with Globalization settings, something like:
System.Threading.Thread.CurrentUICulture = new System.Globalization.CultureInfo("en-US");
or
Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-us");
Goodluck!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With