영어로 읽기

다음을 통해 공유


컴파일러 오류 CS1576

#line 지시문에 지정한 줄 번호가 없거나 잘못되었습니다.

컴파일러가 #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  
   }  
}