Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C# Console.WindowLeft 속성

<시간/>

WindowsLeft 속성은 화면 버퍼를 기준으로 콘솔 창 영역의 가장 왼쪽 위치를 가져오거나 설정합니다.

가장 왼쪽 위치를 얻으려면 정수 변수를 선언하십시오.

int left;

이제 Console.WindowLeft 속성을 사용하십시오.

left = Console.WindowLeft

전체 예를 살펴보겠습니다.

using System;
class Demo {
   static void Main() {
      int left;
      left = Console.WindowLeft;
      Console.WriteLine("Left position of the Console window = "+left);
   }
}

출력

참고:출력은 콘솔 창의 위치에 따라 달라질 수 있습니다.

Left position of the Console window = 0