영어로 읽기

다음을 통해 공유


컴파일러 경고(수준 1) CS1589

'file' 파일의 'fragment' XML 조각을 포함할 수 없습니다. reason

파일(file)을 참조한 <include> 태그의 구문(fragment)이 지정한 이유 때문에 잘못되었습니다.

형식이 잘못된 줄이 생성된 XML 파일에 배치됩니다.

다음 샘플에서는 CS1589를 생성합니다.

C#
// 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()  
   {  
   }  
}