編譯器錯誤 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
}
}