AppHarbor.ForegroundColor.ForegroundColor C# (CSharp) 메소드

ForegroundColor() 공개 메소드

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