Axiom.Demos.Browser.WinForm.Program.ExecuteCoreTask C# (CSharp) 메소드

ExecuteCoreTask() 개인적인 정적인 메소드

private static ExecuteCoreTask ( Options options ) : void
options Options
리턴 void
		private static void ExecuteCoreTask( Options options )
		{
			try
			{
				using ( Program main = new Program() )
				{
					main.Run( options ); //show and start rendering
				} //dispose of it when done
			}
			catch ( Exception ex )
			{
				Console.WriteLine( BuildExceptionString( ex ) );
				Console.WriteLine( "An exception has occurred.  Press enter to continue..." );
				Console.ReadLine();
			}
		}