using System.Collections; using System.Collections.Generic; using System.Text.RegularExpressions; namespace Rokojori { public class XMLCommentNode:XMLNode { public XMLCommentNode( XMLDocument document, string textContent ):base( document, XMLNode.NodeType.Comment ) { _textContent = textContent; } string _textContent; public override string nodeValue => _textContent; } }