編譯器警告 (層級 1) CS1589
無法納入檔案 'file' 的 XML 片段 'fragment' -- reason
因為指定的 reason,所以已參考檔案 (file
) 之 <include> 標記的語法 (fragment) 不正確。
將在產生的 XML 檔案中放入格式不正確的程式行。
下列範例會產生 CS1589:
// CS1589.cs
// compile with: /W:1 /doc:CS1589_out.xml
/// <include file='CS1589.doc' path='MyDocs/MyMembers[@name="test"]/' /> // CS1589
// try the following line instead
// /// <include file='CS1589.doc' path='MyDocs/MyMembers[@name="test"]/*' />
class Test
{
public static void Main()
{
}
}