dictionary クラス : Values() メソッド

説明

連想配列の値のリストを取得します。

構文

dictionaryInstance.Values()

引数

無し

返り値

クラス説明
someList連想配列の値のリスト。

サンプルコード

//anyDictionaryはdictionary{string}型のインスタンス.

list{string} valueList = anyDictionary.Values();

注意

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

参照リンク

Copyright © Rice All rights reserved.