SortedList.Values 属性

定义

获取 SortedList 对象中的值。

public:
 virtual property System::Collections::ICollection ^ Values { System::Collections::ICollection ^ get(); };
public virtual System.Collections.ICollection Values { get; }
member this.Values : System.Collections.ICollection
Public Overridable ReadOnly Property Values As ICollection

属性值

ICollection 对象,它包含 SortedList 对象中的值。

实现

注解

对象 ICollection 是对象值的 SortedList 只读视图。 对基础 SortedList 所做的修改会立即反映在 中 ICollection

ICollection 元素的排序顺序与 的值 SortedList相同。

此属性类似于 GetValueList 方法,但返回 对象 ICollection 而不是 IList 对象。

此方法是一个 O(1) 操作。

适用于

另请参阅