SortedSet<T>.Comparer 属性

定义

获取用于为 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) 操作。

适用于