Lookup<TKey,TElement>.Count プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Lookup<TKey,TElement> 内のキーと値コレクションのペアの数を取得します。
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
プロパティ値
Lookup<TKey,TElement> 内のキーと値コレクションのペアの数。
実装
例
次の例では、 を使用 Count して、 内のキーと値のコレクションペアの数を決定する方法を Lookup<TKey,TElement>示します。 このコード例は、Lookup<TKey,TElement> クラスのために提供されている大規模な例の一部です。
// Get the number of key-collection pairs in the Lookup.
int count = lookup.Count;
' Get the number of key-collection pairs in the Lookup.
Dim count As Integer = lookup.Count
注釈
オブジェクトの作成後に項目を Count 追加したり、オブジェクトから削除したりすることができないため、プロパティの Lookup<TKey,TElement> 値は変更されません。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET