vote up 3 vote down star
1

I am working on machine with XP Dutch version installed on it. Visual studio 2005 is installed in English. I'm having the annoying problem while debugging that all .NET Framework exception message appear in Dutch, which make them really worthless. I tried to change this to English by setting the regional settings in the control panel to US English and then reinstalling the .NET Framework 2.0 (English version) but apparently this did not solve the problem. Does anyone have an idea?

flag

5 Answers

vote up 2 vote down

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

link|flag
vote up 0 vote down

Check this :

C# - Exception messages in English?

link|flag
vote up 1 vote down

I think my question was missunderstood, I don't want to change the current culture of the thread. The problem i'm having is when you are debugging and stepping through the code when suddenly one of those exception windows appears with the exception-message in it. This exception message appears in Dutch and I would like it to appear English. I hope this clarifies the question.

link|flag
vote up 1 vote down

Try:

Tools -> Options -> Environment -> International Settings -> Language
link|flag
vote up 1 vote down

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 'Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-us")' in the code itself.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.