Clues.ConsoleOptions.UsageHeading C# (CSharp) Метод

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

private UsageHeading ( HelpText helpText ) : HelpText
helpText CommandLine.Text.HelpText
Результат CommandLine.Text.HelpText
        private HelpText UsageHeading(HelpText helpText)
        {
            //   var assembly = Assembly.GetExecutingAssembly();
            //   var fvi = FileVersionInfo.GetVersionInfo(assembly.Location);
            //   var version = fvi.FileVersion; // or fvi.ProductVersion
            helpText.MaximumDisplayWidth = 200;

            helpText.Heading = "\n------------------------------------------------------ \n";
            helpText.Heading += "PI-AF-SDK: Command Line Utility and ExampleS (CLUES) \n";
             //   helpText.Heading += "Version: " + version + " \n";
            helpText.Heading += "Copyright 2015 OSIsoft - PI Developers Club\n";
            helpText.Heading += "Source code: github.com/osisoft/PI-AF-SDK-clues\n";
            helpText.Heading += "Licensed under the Apache License, Version 2.0";
            helpText.Copyright= "------------------------------------------------------ ";
            return helpText;
        }