Interface IFullKeyValuePairComparer<TKey, TValue>
Represents a comparer for KeyValuePair<TKey, TValue> that demands that both the key and the value implement IComparable<T>.
public interface IFullKeyValuePairComparer<TKey, TValue> : IKeyValuePairComparer<TKey, TValue>, IComparer<KeyValuePair<TKey, TValue>> where TKey : IComparable<TKey> where TValue : IComparable<TValue>
Type Parameters
TKeyThe type of the key.
TValueThe type of the value.
- Inherited Members
- Extension Methods