How to remove the localization of the .NET Framework in Russian?

I installed Windows 7. Install Visual Studio 2008 with .Net Framework 3.5. Then Russified Windows. And after this error message in Visual Studio unexpectedly appears in Russian. How can I remove the Russian translation for .NET Framework error messages?

+4
source share
3 answers

Windows-> CTRL PANEL-> Region and Language → Location → Current Location: Switch to Russian in the USA

I'm not sure if this is a problem, but you can try this ...

Other SO answers suggest removing the language pack for dot net ....

0
source

you can try the following: VS-> Tools-> Options-> Enviroment-> international settings-> then select the appropriate language.

0
source

You must set the desired culture of the current thread:

using System; using System.Collections.Generic; using System.Windows.Forms; namespace UnlocolizeDotNetFrameworkMessage { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("en-US"); Application.Run(new Form1()); } } } 
0
source

Source: https://habr.com/ru/post/1306621/


All Articles