PrintSections() private method

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

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

            help.PrintSections();

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