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

C#에서 #region 지시문을 어디에 사용합니까?

<시간/>

Visual Studio Code Editor의 개요 기능을 사용할 때 확장하거나 축소할 수 있는 코드 블록을 지정할 수 있습니다. #endregion으로 종료되어야 합니다.

#region을 사용하여 지역을 정의하는 방법을 살펴보겠습니다.

#region NewClass definition
public class NewClass {
   static void Main() { }
}
#endregion

다음은 #region 지시문 사용 예입니다.

예시

using System;
#region
class MyClass {
}

#endregion
class Demo {
   #region VARIABLE
   int a;
   #endregion
   static void Main() {
      #region BODY
      Console.WriteLine("Example showing the usage of region directive!");
      #endregion
   }
}

출력

Example showing the usage of region directive!