コンパイラ エラー CS1576

更新 : 2007 年 11 月

エラー メッセージ

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