Whitelog.Core.Loggers.String.StringAppenders.Console.ColorLine.ColorLine C# (CSharp) Method

ColorLine() public method

public ColorLine ( ConsoleColor background, ConsoleColor foreground ) : System
background ConsoleColor
foreground ConsoleColor
return System
        public ColorLine(ConsoleColor? background, ConsoleColor? foreground)
        {
            Background = background;
            Foreground = foreground;
        }
ColorLine