SortedDictionary<TKey,TValue>.Remove(TKey) 方法

定义

SortedDictionary<TKey,TValue> 中移除包含指定键的元素。

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

参数

key
TKey

要移除的元素的键。

返回

如果该元素已成功移除,则为 true;否则为 false。 如果在 false 中没有找到 key,则此方法也会返回 SortedDictionary<TKey,TValue>

实现

例外

keynull

示例

下面的代码示例演示如何使用 Remove 方法从字典中删除键/值对。

此代码示例是为 SortedDictionary<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(vbLf + "Remove(""doc"")")
openWith.Remove("doc")

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

注解

SortedDictionary<TKey,TValue>如果 不包含具有指定键的元素,则 SortedDictionary<TKey,TValue> 保持不变。 不会引发异常。

此方法是 O (日志 n) 操作。

适用于

另请参阅