using System.Collections; using System.Collections.Generic; using System.Text.RegularExpressions; namespace Rokojori { public class XMLDocumentFragmentNode:XMLNode { public XMLDocumentFragmentNode( XMLDocument document ):base( document, XMLNode.NodeType.DocumentFragment ) {} } }