TypedSortedListEx
TKey
,
TValue
Constructor (IDictionary
TKey
,
TValue
)
|
Copies the elements from the specified dictionary to a new list
with the same initial capacity as the number of elements copied.
Namespace:
Spire.Doc.Collections
Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
Syntax
public TypedSortedListEx(
IDictionary<TKey, TValue> d
)
Public Sub New (
d As IDictionary(Of TKey, TValue)
)
public:
TypedSortedListEx(
IDictionary<TKey, TValue>^ d
)
new :
d : IDictionary<'TKey, 'TValue> -> TypedSortedListEx
Parameters
-
d
-
Type:
System.Collections.Generic
IDictionary
TKey
,
TValue
The IDictionary to copy.
See Also