using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading; namespace CommandMessengerTests { class Program { static void Main(string[] args) { Thread.CurrentThread.CurrentCulture = Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US"); new CommandMessengerTest(); } } }