更新:2007 年 11 月
错误消息
警告等级必须在 0-4 的范围内下面的示例生成 CS1900:
// CS1900.cs
// compile with: /W:5
// CS1900 expected
class x
{
   public static void Main()
   {
   }
} | |
更新:2007 年 11 月
下面的示例生成 CS1900:
// CS1900.cs
// compile with: /W:5
// CS1900 expected
class x
{
   public static void Main()
   {
   }
} | |