英語で読む

次の方法で共有


コンパイラ エラー CS1576

#line ディレクティブの行数が指定されていないか、無効です。

#line ディレクティブに渡された値にエラーが検出されました。

次の例では CS1576 が生成されます。

C#
// 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  
   }  
}