AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.0.2-alpha-258" />

 CombinatorSymbols

public static class CombinatorSymbols
The collection of known CSS selector combinator symbols.
using System.Runtime.CompilerServices; namespace AngleSharp.Css { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] public static class CombinatorSymbols { public static readonly string Exactly = "="; public static readonly string Unlike = "!="; public static readonly string InList = "~="; public static readonly string InToken = "|="; public static readonly string Begins = "^="; public static readonly string Ends = "$="; public static readonly string InText = "*="; public static readonly string Column = "||"; public static readonly string Pipe = "|"; public static readonly string Adjacent = "+"; public static readonly string Descendent = " "; public static readonly string Deep = ">>>"; public static readonly string Child = ">"; public static readonly string Sibling = "~"; } }