AngleSharp by Florian Rappl

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

.NET API 1,175,040 bytes

 KeyframeSelector

Represents the keyframe selector.
using AngleSharp.Css.Values; using System.Collections.Generic; namespace AngleSharp.Dom.Css { internal sealed class KeyframeSelector : IKeyframeSelector { private readonly List<Percent> _stops; public IEnumerable<Percent> Stops => _stops; public string Text { get { string[] array = new string[_stops.Count]; for (int i = 0; i < array.Length; i++) { array[i] = _stops[i].ToString(); } return string.Join(", ", array); } } public KeyframeSelector(IEnumerable<Percent> stops) { _stops = new List<Percent>(stops); } } }