PrintSections() private method

private PrintSections ( ) : void
return void
示例#1
0
        public static void Run(IFormatter formatter, Boolean flush = true)
        {
            var help = new HelpPrinter(formatter);
            help.PrintSections();

            if (flush)
            {
                help.Flush();
            }
        }
示例#2
0
        public static void Run(IFormatter formatter, Boolean flush = true)
        {
            var help = new HelpPrinter(formatter);

            help.PrintSections();

            if (flush)
            {
                help.Flush();
            }
        }