2

I'd like to set in the App.Config either "en-US" or "ru-RU" to tell the app which resx it should use. I don't want to let the app choose it automatically by the operating system's (envoirnment) language.

how would you do?

Kai
  • 5,850
  • 13
  • 43
  • 63

1 Answers1

0

I simply use

Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE");

in Program.cs Main()-function.