使用英语阅读

通过


编译器错误 CS2005

“选项”选项缺少文件规范

只指定了部分 编译器选项

例如,使用 -recurse 时,必须指定要搜索的文件:/recurse:filename.cs。

示例

下面的示例生成 CS2005。

// CS2005.cs  
// compile with: /recurse:  
// CS2005 expected  
class x  
{  
   public static void Main() {}  
}