Beispiel #1
0
        public SimpleTablePrinter(IConsole console, ICoreTableStyle style) : base(console, style)
        {
            if (style == null)
            {
                throw new ArgumentNullException(nameof(style));
            }

            this._style = style;
        }
 protected DataTablePrinter(IConsole console, ICoreTableStyle coreStyle)
 {
     this._console   = console;
     this._coreStyle = coreStyle;
     this._atom      = coreStyle.AtomicPrinting ? console.AtomicHandle : new object();
 }