System.ConsoleDriver.SetWindowSize C# (CSharp) 메소드

SetWindowSize() 공개 정적인 메소드

public static SetWindowSize ( int width, int height ) : void
width int
height int
리턴 void
		public static void SetWindowSize (int width, int height)
		{
			driver.SetWindowSize (width, height);
		}

Usage Example

예제 #1
0
 public static void SetWindowSize(int width, int height)
 {
     ConsoleDriver.SetWindowSize(width, height);
 }