 | ConfigurationDictionaryTKey, TValueRemove(KeyValuePairTKey, TValue) Method |
Removes the first occurrence of a specific object from the
ICollectionT.
Namespace: SanteDB.Client.ConfigurationAssembly: SanteDB.Client (in SanteDB.Client.dll) Version: 3.0.2081-alpha+027e4605b77f83de5445cbcd55717223932d2452
Syntaxpublic 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 KeyValuePairTKey, TValue
- The object to remove from the ICollectionT.
Return Value
Boolean if
item was successfully removed from the
ICollectionT; otherwise,
. This method also returns
if
item is not found in the original
ICollectionT.
Implements
ICollectionTRemove(T)
Exceptions
See Also