PowerArgs.StdConsoleProvider.Clear C# (CSharp) Method

Clear() public method

Clears the console
public Clear ( ) : void
return void
        public void Clear()
        {
            var bg = Console.BackgroundColor;
            try
            {
                Console.BackgroundColor = ConsoleString.DefaultBackgroundColor;
                Console.Clear();
            }finally
            {
                Console.BackgroundColor = bg;
            }
        }