SadConsole.CellAppearance.SwapColors C# (CSharp) 메소드

SwapColors() 공개 메소드

Swaps the foreground and background colors.
public SwapColors ( ) : void
리턴 void
        public void SwapColors()
        {
            var tempColor = Foreground;
            Foreground = Background;
            Background = tempColor;
        }