AppHarbor.ForegroundColor.ForegroundColor C# (CSharp) Method

ForegroundColor() public method

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