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