CreateComment() 공개 메소드

public CreateComment ( string data ) : XmlComment
data string
리턴 System.Xml.XmlComment
예제 #1
0
 public void CommentNodeCreation()
 {
     Document document = new Document();
             document.MutationEvents = true;
             Comment comment = (Comment)document.CreateComment("comment");
             comment.Data = "trigger";
 }