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: 9.6.1.0 (9.6.1.3020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
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
IDictionary<(Of <(<'TKey, TValue>)>)>
The IDictionary to copy.

See Also