Build.Foreground.Foreground C# (CSharp) Method

Foreground() public method

public Foreground ( ConsoleColor color ) : System
color ConsoleColor
return System
        public Foreground(ConsoleColor color)
        {
            before = Console.ForegroundColor;
            Console.ForegroundColor = color;
        }