TypedSortedListEx
TKey
,
TValue
Remove Method (KeyValuePair
TKey
,
TValue
)
|
Removes the specified KeyValuePair from the collection.
Namespace:
Spire.Doc.Collections
Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
Syntax
public bool Remove(
KeyValuePair<TKey, TValue> item
)
Public Function Remove (
item As KeyValuePair(Of TKey, TValue)
) As Boolean
public:
virtual bool Remove(
KeyValuePair<TKey, TValue> item
) sealed
abstract Remove :
item : KeyValuePair<'TKey, 'TValue> -> bool
override Remove :
item : KeyValuePair<'TKey, 'TValue> -> bool
Parameters
-
item
-
Type:
System.Collections.Generic
KeyValuePair
TKey
,
TValue
The KeyValuePair to remove.
Return Value
Type:
Boolean
true if the item was successfully removed; otherwise, false.
Implements
ICollection
T
Remove(T)
See Also