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