AngleSharp by Florian Rappl

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

.NET API 1,175,040 bytes

 IStyleSheetList

Represents a list of stylesheet elements.
using AngleSharp.Attributes; using System.Collections; using System.Collections.Generic; namespace AngleSharp.Dom { [DomName("StyleSheetList")] public interface IStyleSheetList : IEnumerable<IStyleSheet>, IEnumerable { [DomName("item")] [DomAccessor(Accessors.Getter)] IStyleSheet this[int index] { get; } [DomName("length")] int Length { get; } } }