SortedDictionary<TKey,TValue>.Comparer プロパティ

定義

IComparer<T> の要素の順序付けに使用する SortedDictionary<TKey,TValue> を取得します。

public:
 property System::Collections::Generic::IComparer<TKey> ^ Comparer { System::Collections::Generic::IComparer<TKey> ^ get(); };
public System.Collections.Generic.IComparer<TKey> Comparer { get; }
member this.Comparer : System.Collections.Generic.IComparer<'Key>
Public ReadOnly Property Comparer As IComparer(Of TKey)

プロパティ値

IComparer<TKey>

IComparer<T> の要素の順序付けに使用する SortedDictionary<TKey,TValue>

注釈

SortedDictionary<TKey,TValue> キー比較を実行するには、比較子の実装が必要です。 パラメーターを受け取るコンストラクターを IComparer<T> 使用して、ジェネリック インターフェイスの実装を comparer 指定できます。 そうでない場合は、既定のジェネリック等価比較子 Comparer<T>.Defaultである が使用されます。 type TKey がジェネリック インターフェイスを実装する System.IComparable<T> 場合、既定の比較子はその実装を使用します。

このプロパティの値の取得は O(1) 操作です。

適用対象

こちらもご覧ください