编译器错误 CS1900
警告等级必须在 0-4 的范围内
WarningLevel 编译器选项只能带五个可能的值(0、1、2、3 或 4)之一。 传递给 /warn 的其他任何值均将导致 CS1900。
下面的示例生成 CS1900:
// CS1900.cs
// compile with: /W:5
// CS1900 expected
class x
{
public static void Main()
{
}
}
备注
编译器不再生成此错误。 大于 4 的值表示“警告波”并有效,即使尚未为此波定义警告。