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?
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 ....
you can try the following: VS-> Tools-> Options-> Enviroment-> international settings-> then select the appropriate language.
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()); } } }
Source: https://habr.com/ru/post/1306621/More articles:Checking the software availability of a module in Python? - pythonShould this database table be normalized? - sqlParse HTML with CSS or XPath selectors? - htmlCodeIgniter / PHP - calling a view from a view - php3-tier architecture with 3-server architecture - c #naive Bayesian spam filter question - mathBest sizes for Youtube embedded players? - phpTouchpad Scrolling on Mac - emacsWhat might quine look like in my programming language? - turing-completeIs A = {0 ^ n 1 ^ n 0 ^ n} free? - computer-scienceAll Articles