rokojori_action_library/Runtime/XML/Nodes/XMLCommentNode.cs

19 lines
436 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;
2026-05-22 12:25:02 +00:00
using Rokojori.Extensions;
2024-07-25 05:40:31 +00:00
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;
}
}