Share via


컴파일러 오류 CS1038

업데이트: 2007년 11월

오류 메시지

#endregion 지시문이 필요합니다.
#endregion directive expected

#region 지시문에 짝이 되는 #endregion 지시문이 없습니다.

다음 샘플에서는 CS1038 오류가 발생하는 경우를 보여 줍니다.

// CS1038.cs
#region testing

public class clx
{
   public static void Main()
   {
   }
}
// CS1038
// uncomment the next line to resolve
// #endregion