예제 #1
0
        public void SetForeColor(ConsoleColor value)
        {
            if (!_AllowOutPut)
            {
                return;
            }
            if (_LastFore == value)
            {
                return;
            }

            _LastFore = value;
            _IO.SetForeColor(value);
        }
예제 #2
0
        public void SetForeColor(ConsoleColor value)
        {
            if (!_AllowOutPut)
            {
                return;
            }

            if (value == ConsoleColor.DarkGray && SystemHelper.IsMono)
            {
                value = ConsoleColor.Gray;
            }
            if (_LastFore == value)
            {
                return;
            }

            _LastFore = value;
            _IO.SetForeColor(value);
        }