IDictionary<TKey,TValue>.Remove(TKey) メソッド

定義

指定したキーを持つ要素を IDictionary<TKey,TValue> から削除します。

public:
 bool Remove(TKey key);
public bool Remove (TKey key);
abstract member Remove : 'Key -> bool
Public Function Remove (key As TKey) As Boolean

パラメーター

key
TKey

削除する要素のキー。

戻り値

要素が正常に削除された場合は true。それ以外の場合は false。 このメソッドは、元の falsekey が見つからなかった場合にも IDictionary<TKey,TValue> を返します。

例外

keynullです。

IDictionary<TKey,TValue> は読み取り専用です。

次のコード例は、 メソッドを使用してディクショナリからキーと値のペアを削除する方法を Remove 示しています。

このコードは、コンパイルおよび実行できるより大きな例の一部です。 以下を参照してください。System.Collections.Generic.IDictionary<TKey,TValue>

// Use the Remove method to remove a key/value pair.
Console::WriteLine("\nRemove(\"doc\")");
openWith->Remove("doc");

if (!openWith->ContainsKey("doc"))
{
    Console::WriteLine("Key \"doc\" is not found.");
}
// Use the Remove method to remove a key/value pair.
Console.WriteLine("\nRemove(\"doc\")");
openWith.Remove("doc");

if (!openWith.ContainsKey("doc"))
{
    Console.WriteLine("Key \"doc\" is not found.");
}
' Use the Remove method to remove a key/value pair.
Console.WriteLine(vbLf + "Remove(""doc"")")
openWith.Remove("doc")

If Not openWith.ContainsKey("doc") Then
    Console.WriteLine("Key ""doc"" is not found.")
End If

注釈

実装は、オブジェクトの等価性を決定する方法によって異なる場合があります。たとえば、 クラスでは を List<T> 使用 Comparer<T>.Defaultしますが、 Dictionary<TKey,TValue> クラスを使用すると、キーの比較に使用する実装をユーザーが指定 IComparer<T> できます。

適用対象

こちらもご覧ください