using System; using System.Threading; using System.Globalization; public class Test { public static void Main() { var c1 = CultureInfo.GetCultureInfo("ru"); Thread.CurrentThread.CurrentCulture = c1; } }