Axiom.Demos.Browser.WinForm.Program.Options.GetUsage C# (CSharp) Метод

GetUsage() приватный Метод

private GetUsage ( ) : string
Результат string
			public string GetUsage()
			{
				var help = new HelpText( Program._headingInfo );
				help.AdditionalNewLineAfterOption = true;
				help.Copyright = new CopyrightInfo( "Axiom Engine Team", 2003, 2010 );
				help.AddPreOptionsLine( "This is free software. You may redistribute copies of it under the terms of" );
				help.AddPreOptionsLine( "the LGPL License <http://www.opensource.org/licenses/lgpl-license.php>." );
				help.AddPreOptionsLine( "Usage: SampleApp -sCompositor " );
				help.AddOptions( this );

				return help;
			}
		}
Program.Options