public static void SetBufferSize(int width, int height) { ConsolePal.SetBufferSize(width, height); }
public static void SetWindowPosition(int left, int top) { ConsolePal.SetWindowPosition(left, top); }
public static ConsoleKeyInfo ReadKey(bool intercept) { return(ConsolePal.ReadKey(intercept)); }
public static void ResetColor() { ConsolePal.ResetColor(); }
public static Stream OpenStandardError() { return(ConsolePal.OpenStandardError()); }
public static ConsoleKeyInfo ReadKey() { return(ConsolePal.ReadKey(false)); }
public static void Clear() { ConsolePal.Clear(); }
public static Stream OpenStandardOutput() { return(ConsolePal.OpenStandardOutput()); }
public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop) { ConsolePal.MoveBufferArea(sourceLeft, sourceTop, sourceWidth, sourceHeight, targetLeft, targetTop, ' ', ConsoleColor.Black, BackgroundColor); }
public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop, char sourceChar, ConsoleColor sourceForeColor, ConsoleColor sourceBackColor) { ConsolePal.MoveBufferArea(sourceLeft, sourceTop, sourceWidth, sourceHeight, targetLeft, targetTop, sourceChar, sourceForeColor, sourceBackColor); }
public static void Beep(int frequency, int duration) { ConsolePal.Beep(frequency, duration); }
public static void Beep() { ConsolePal.Beep(); }
public static void SetWindowSize(int width, int height) { ConsolePal.SetWindowSize(width, height); }
public override void Write(byte[] buffer, int offset, int count) { ValidateWrite(buffer, offset, count); ConsolePal.Write(_handle, buffer, offset, count); }
public override int Read(byte[] buffer, int offset, int count) { ValidateRead(buffer, offset, count); return(ConsolePal.Read(_handle, buffer, offset, count)); }