How to change Visual Studio exception message language to English while debugging [duplicate]

Solution 1:

I did some more research and apparently it is not possible to change the CurrentUICulture by default to a different language then the native language of the installed OS. It can only be changed when doing something like this in the code itself:

Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-us");

Solution 2:

Solved !

No line of code.

Go to Start > Configuration Panel > Language and region > Administration > Languages for non unicode programs > Set it to english.

Solution 3:

This issue has been discussed here. Basically you can change the current thread's CurrentCulture to en-US.