ConcurrentDictionary<TKey,TValue>.GetAlternateLookup<TAlternateKey> メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ConcurrentDictionary<TKey,TValue> に対する操作の実行に使用できる型のインスタンスを取得します。
TKey
の代わりにキーとして TAlternateKey
を使用します。
public:
generic <typename TAlternateKey>
System::Collections::Concurrent::ConcurrentDictionary<TKey, TValue>::AlternateLookup<TAlternateKey> GetAlternateLookup();
public System.Collections.Concurrent.ConcurrentDictionary<TKey,TValue>.AlternateLookup<TAlternateKey> GetAlternateLookup<TAlternateKey> ();
member this.GetAlternateLookup : unit -> System.Collections.Concurrent.ConcurrentDictionary<'Key, 'Value>.AlternateLookup<'AlternateKey>
Public Function GetAlternateLookup(Of TAlternateKey) () As ConcurrentDictionary(Of TKey, TValue).AlternateLookup(Of TAlternateKey)
型パラメーター
- TAlternateKey
検索を実行するためのキーの代替型。
戻り値
作成された参照インスタンス。
例外
このインスタンスの比較子は、TAlternateKey
と互換性がありません。
注釈
このインスタンスは、次のコマンドで IAlternateEqualityComparer<TAlternate,T> を実装する比較子を使用している必要があります。
TAlternateKey
と TKey
. そうでない場合は、例外がスローされます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET