AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.15.0-alpha-14" />

.NET API 832,512 bytes

 Comment

Represents a node that contains a comment.
namespace AngleSharp.Dom { internal sealed class Comment : CharacterData, IComment, ICharacterData, INode, IEventTarget, IMarkupFormattable, IChildNode, INonDocumentTypeChildNode { internal Comment(Document owner) : this(owner, string.Empty) { } internal Comment(Document owner, string data) : base(owner, "#comment", NodeType.Comment, data) { } public override Node Clone(Document owner, bool deep) { Comment comment = new Comment(owner, base.Data); CloneNode(comment, owner, deep); return comment; } } }