SortedSet<T>.Comparer 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取用于为 SortedSet<T> 中的值排序的 IComparer<T> 对象。
public:
property System::Collections::Generic::IComparer<T> ^ Comparer { System::Collections::Generic::IComparer<T> ^ get(); };
public System.Collections.Generic.IComparer<T> Comparer { get; }
member this.Comparer : System.Collections.Generic.IComparer<'T>
Public ReadOnly Property Comparer As IComparer(Of T)
属性值
用于为 SortedSet<T> 中的值排序的比较器。
注解
返回的比较器可以是 的类型的默认比较器 SortedSet<T>,也可以是用于其构造函数的比较器。
检索此属性的值是一项 O(1)
操作。