更新:2007 年 11 月
错误消息
无效的 XML 包含元素 — 缺少文件属性缺少传递给 
下面的示例生成 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()
   {
   }
} | |