dictionary クラス : Count ゲッタ

説明

連想配列に含まれるキー/値ペアの数を取得します。

構文

dictionaryInstance.Count

引数

無し

返り値

クラス説明
int連想配列に含まれるキー/値ペアの数。

サンプルコード

//anyDictionaryはdictionary型のインスタンス.

int number = anyDictionary.Count;

注意

System.Collections.Generic.Dictionary<TKey, TValue>.Countのラッパーです。

参照リンク

Copyright © Rice All rights reserved.