System.Xml.Xsl.Runtime.XmlQueryOutput.WriteComment C# (CSharp) Method

WriteComment() public method

Before writing a comment, perform various checks to ensure well-formedness.
public WriteComment ( string text ) : void
text string
return void
        public override void WriteComment(string text) {
            WriteStartComment();
            WriteCommentString(text);
            WriteEndComment();
        }