示例#1
0
		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();
			}
		}
示例#2
0
        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();
            }
        }