static void Main(string[] args) { SystemClass system; bool result; Thread.CurrentThread.CurrentCulture = new CultureInfo("en"); system = new SystemClass(); try { result = system.Initialize(); if (result) system.Run(); } finally { system.Shutdown(); } }
static void Main(string[] args) { SystemClass system; bool result; Thread.CurrentThread.CurrentCulture = new CultureInfo("en"); system = new SystemClass(); try { result = system.Initialize(); if (result) { system.Run(); } } finally { system.Shutdown(); } }