使用英语阅读

通过


编译器警告(等级 1)CS1590

XML 包含元素无效 -- 缺少文件特性

缺少传递给 <include> 标记的 path 或 doc 特性,或特性不完整。

下面的示例生成 CS1590:

// CS1590.cs  
// compile with: /W:1 /doc:x.xml  
  
/// <include path='MyDocs/MyMembers[@name="test"]/*' />   // CS1590  
// try the following line instead  
// /// <include file='x.doc' path='MyDocs/MyMembers[@name="test"]/*' />  
class Test  
{  
   public static void Main()  
   {  
   }  
}