Flush() 개인적인 메소드

private Flush ( ) : void
리턴 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();
            }
        }