SadConsole.CellAppearance.SwapColors C# (CSharp) Method

SwapColors() public method

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