Force exceptions language in English

Posted by serhio on Stack Overflow See other posts from Stack Overflow or by serhio
Published on 2010-01-19T09:07:52Z Indexed on 2010/05/08 23:28 UTC
Read the original article Hit count: 312

Filed under:
|
|

My Visual Studio 2005 is a French one, installed on a French OS. All the exceptions I receive during debug or runtime I obtain also in French.

Can I however do something that the exceptions messages be in English? For goggling, discussing etc.

I tried the following:

Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US");
throw new NullReferenceException();

obtained

Object reference not set to an instance of an object.

This is, surely, cool... but, as I work on a French project, I will not hardcode forcing Thread.CurrentUICulture to English. I want the English change to be only on my local machine, and don't change the project properties.

Is it possible to set the exceptions language without modifying the code of the application?


In VS 2008, set the Tools -> Options -> Environment -> International Settings -> Language to "English" wnd throwing the same exception obtain the ex message en French, however: alt text

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about .NET