AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.4.1" />

.NET API 1,229,312 bytes

 INodeList

NodeList objects are collections of nodes.
using AngleSharp.Attributes; using System.Collections; using System.Collections.Generic; namespace AngleSharp.Dom { [DomName("NodeList")] public interface INodeList : IEnumerable<INode>, IEnumerable, IMarkupFormattable { [DomAccessor(Accessors.Getter)] [DomName("item")] INode this[int index] { get; } [DomName("length")] int Length { get; } } }