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

説明

指定したキーを持つ値を削除します。

構文

dictionaryInstance.Remove(string key)

引数

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

返り値

クラス説明
bool除去が成功であったかどうかについて示す値。

サンプルコード

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

bool success = anyDictionary.Remove("ww");

注意

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

参照リンク

Copyright © Rice All rights reserved.