BDInfoCli.MyOptions.GetUsage C# (CSharp) Метод

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

private GetUsage ( ) : string
Результат string
        public string GetUsage()
        {
            var help = new HelpText {
                Heading = new HeadingInfo("BDInfoCli", (Assembly.GetExecutingAssembly().GetName().Version).ToString()),
                AdditionalNewLineAfterOption = true,
                AddDashesToOption = true
            };
            help.AddPreOptionsLine("Licensed under LGPL V2.1");
            help.AddPreOptionsLine("Usage: BDInfoCli <BD Folder> <Save Path>");
            help.AddOptions(this);
            return help;
        }
MyOptions