AppHarbor.ForegroundColor.ForegroundColor C# (CSharp) Метод

ForegroundColor() публичный Метод

public ForegroundColor ( ConsoleColor color ) : System
color ConsoleColor
Результат System
        public ForegroundColor(ConsoleColor color)
        {
            _originalColor = Console.ForegroundColor;
            Console.ForegroundColor = color;
        }