rj-action-library/Runtime/XML/Nodes/XMLCommentNode.cs

18 lines
409 B
C#
Raw Normal View History

2024-07-25 05:40:31 +00:00
using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace Rokojori
{
public class XMLCommentNode:XMLNode
2024-07-25 05:40:31 +00:00
{
public XMLCommentNode( XMLDocument document, string textContent ):base( document, XMLNode.NodeType.Comment )
2024-07-25 05:40:31 +00:00
{
_textContent = textContent;
}
string _textContent;
public override string nodeValue => _textContent;
}
}