IDictionary<TKey,TValue>.Remove(TKey) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したキーを持つ要素を 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
。 このメソッドは、元の false
で key
が見つからなかった場合にも IDictionary<TKey,TValue> を返します。
例外
key
が null
です。
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> できます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET