System.ConsoleDriver.SetBufferSize C# (CSharp) Method

SetBufferSize() public static method

public static SetBufferSize ( int width, int height ) : void
width int
height int
return void
		public static void SetBufferSize (int width, int height)
		{
			driver.SetBufferSize (width, height);
		}

Usage Example

Esempio n. 1
0
 public static void SetBufferSize(int width, int height)
 {
     ConsoleDriver.SetBufferSize(width, height);
 }