<PackageReference Include="NETStandard.Library" Version="2.0.2" />

System.Collections.Generic.SortedDictionary<TKey, TValue>

public class SortedDictionary<TKey, TValue> : ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable, IDictionary<TKey, TValue>, IReadOnlyCollection<KeyValuePair<TKey, TValue>>, IReadOnlyDictionary<TKey, TValue>, ICollection, IDictionary
public struct Enumerator<TKey, TValue> : IEnumerator<KeyValuePair<TKey, TValue>>, IEnumerator, IDisposable, IDictionaryEnumerator

public sealed class KeyCollection<TKey, TValue> : ICollection<TKey>, IEnumerable<TKey>, IEnumerable, IReadOnlyCollection<TKey>, ICollection

public sealed class ValueCollection<TKey, TValue> : ICollection<TValue>, IEnumerable<TValue>, IEnumerable, IReadOnlyCollection<TValue>, ICollection

public IComparer<TKey> Comparer { get; }

public int Count { get; }

public TValue this[TKey key] { get; set; }

public KeyCollection<TKey, TValue> Keys { get; }

public ValueCollection<TKey, TValue> Values { get; }

public SortedDictionary(IComparer<TKey> comparer)

public SortedDictionary(IDictionary<TKey, TValue> dictionary)

public SortedDictionary(IDictionary<TKey, TValue> dictionary, IComparer<TKey> comparer)

public void Add(TKey key, TValue value)

public void Clear()

public bool ContainsKey(TKey key)

public bool ContainsValue(TValue value)

public void CopyTo(KeyValuePair<TKey, TValue>[] array, int index)

public Enumerator<TKey, TValue> GetEnumerator()

public bool Remove(TKey key)

public bool TryGetValue(TKey key, out TValue value)