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?
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?
I simply use
Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE");
in Program.cs
Main()
-function.