| SqlDictionaryTValueRemove Method (KeyValuePairString, TValue) |
Removes the first occurrence of a specific object from the
ICollectionT.
Namespace: SandcastleBuilder.ComponentsAssembly: SandcastleBuilder.Components (in SandcastleBuilder.Components.dll) Version: 2014.11.22.0
Syntax public bool Remove(
KeyValuePair<string, TValue> item
)
Public Function Remove (
item As KeyValuePair(Of String, TValue)
) As Boolean
public:
virtual bool Remove(
KeyValuePair<String^, TValue> item
) sealed
abstract Remove :
item : KeyValuePair<string, 'TValue> -> bool
override Remove :
item : KeyValuePair<string, 'TValue> -> bool
Parameters
- item
- Type: System.Collections.GenericKeyValuePairString, TValue
The object to remove from the ICollectionT.
Return Value
Type:
Booleantrue if
item was successfully removed from the
ICollectionT; otherwise, false. This method also returns false if
item is not found in the original
ICollectionT.
Implements
ICollectionTRemove(T)Exceptions Remarks This method is not implemented
See Also