<PackageReference Include="System.Text.Json" Version="11.0.0-preview.1.26104.118" />

MemoryExtensionsPolyfills

namespace System { internal static class MemoryExtensionsPolyfills { public static bool ContainsAnyExcept(this ReadOnlySpan<char> span, char value) { for (int i = 0; i < span.Length; i++) { if (span[i] != value) return true; } return false; } } }