TypedSortedListEx
TKey
,
TValue
Add Method (KeyValuePair
TKey
,
TValue
)
|
Adds the specified key-value pair to the collection.
Namespace:
Spire.Doc.Collections
Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
Syntax
public void Add(
KeyValuePair<TKey, TValue> item
)
Public Sub Add (
item As KeyValuePair(Of TKey, TValue)
)
public:
virtual void Add(
KeyValuePair<TKey, TValue> item
) sealed
abstract Add :
item : KeyValuePair<'TKey, 'TValue> -> unit
override Add :
item : KeyValuePair<'TKey, 'TValue> -> unit
Parameters
-
item
-
Type:
System.Collections.Generic
KeyValuePair
TKey
,
TValue
The key-value pair to add to the collection.
Implements
ICollection
T
Add(T)
See Also