RestrictedAccessDictionaryTKey, TValueRemove Method (KeyValuePairTKey, TValue) |
Remove an item from a restricted dictionary if that is allowd. It is not, raise an exception.
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
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.GenericKeyValuePairTKey, TValue
The item to remove
Return Value
Type:
Booleantrue if the item was in the dictionary; otherwise, false
Implements
ICollectionTRemove(T)See Also