예제 #1
0
        public static void Print_Table_With_TF_Style(System.Collections.Generic.List <string[]> rows)
        {
            Console.WriteLine();

            var table = new ConsoleTables.ConsoleTable();

            table.Options.EnableCount = false;

            table.AddColumn(rows[0]);
            for (int i = 1; i < rows.Count; i++)
            {
                table.AddRow(rows[i]);
            }

            Colorful.StyleSheet _Temp1 = new Colorful.StyleSheet(System.Drawing.Color.White);
            _Temp1.AddStyle("True[a-z]*", System.Drawing.Color.Green);
            _Temp1.AddStyle("False[a-z]*", System.Drawing.Color.Red);
            Colorful.Console.WriteLineStyled(table.ToMarkDownString(), _Temp1);
        }