AppHarbor.ForegroundColor.ForegroundColor C# (CSharp) Méthode

ForegroundColor() public méthode

public ForegroundColor ( ConsoleColor color ) : System
color ConsoleColor
Résultat System
        public ForegroundColor(ConsoleColor color)
        {
            _originalColor = Console.ForegroundColor;
            Console.ForegroundColor = color;
        }