dictionary クラス : Get(string) メソッド

説明

指定されたキーに関連付けられた値を取得します。

構文

dictionaryInstance.Get(string key)

引数

クラス名前説明
stringkeyKey to be searched.

返り値

クラス説明
someClass指定されたキーに関連付けられた値。

サンプルコード

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

string valueStr = anyDictionary.Get("ww");

注意

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

参照リンク

Copyright © Rice All rights reserved.