컴파일러 오류 CS1576

업데이트: 2007년 11월

오류 메시지

#line 지시문에 지정한 줄 번호가 없거나 잘못되었습니다.
The line number specified for #line directive is missing or invalid

컴파일러에서 #line 지시문으로 전달한 값에 대한 오류를 발견했습니다.

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

// CS1576.cs
public class MyClass
{
   static void Main()
   {
      #line "abc.sc"         // CS1576
      // try the following line instead
      //#line  101 "abc.sc"
      intt i;  // error will be reported on line 101
   }
}