SortedList<TKey,TValue>.Clear 方法

定义

SortedList<TKey,TValue> 中移除所有元素。

public:
 virtual void Clear();
public void Clear ();
abstract member Clear : unit -> unit
override this.Clear : unit -> unit
Public Sub Clear ()

实现

注解

Count 将设置为零,同时还会释放集合元素中其他对象的引用。

Capacity 保持不变。 若要重置 的容量,请 SortedList<TKey,TValue>直接调用 TrimExcess 或设置 Capacity 属性。 剪裁空 SortedList<TKey,TValue> 会将 的 SortedList<TKey,TValue> 容量设置为默认容量。

此方法是 O (n) 操作,其中 nCount

适用于

另请参阅