| 
TypedSortedListEx
 TKey
,
 TValue
Constructor (IComparer
 TKey
)
  | 
 Creates an empty SortedList with the default initial capacity
and specified comparer.
 Namespace:
 Spire.Doc.Collections
 Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
 Syntax
Syntax
 
 
public TypedSortedListEx(
	IComparer<TKey> comparer
)
 
Public Sub New ( 
	comparer As IComparer(Of TKey)
)
 
public:
TypedSortedListEx(
	IComparer<TKey>^ comparer
)
 
new : 
comparer : IComparer<'TKey> -> TypedSortedListEx
 
 
 
Parameters
 
- 
comparer
 
- 
 Type:
 
System.Collections.Generic
IComparer
 
 TKey
 The IComparer is used to determine whether two keys are equal.
 
 See Also
See Also