共用方式為


編譯器警告 (層級 1) CS1692

更新:2007 年 11 月

錯誤訊息

無效的數字

有些前置處理器指示詞 (Preprocessor Directive) 使用數字做為參數,例如 #pragma 和 #line。其中一個數字無效,原因是該數字太大、格式錯誤、包含不合法的字元等。若要更正這個錯誤,請更正該數字。

範例

下列範例會產生 CS1692:

// CS1692.cs

#pragma warning disable a  // CS1692
// Try this instad:
// #pragma warning disable 1691

class A
{
    static void Main()
    {
    }
}