| 
            
              ImmutableDictionaryTKey, TValueRemove(TKey) Method
             | 
          
        
        Removes the element with the specified key from the IDictionaryTKey, TValue.
        
        Namespace: GSF.ImmutableAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
Syntaxpublic bool Remove(
	TKey key
)
Public Function Remove ( 
	key As TKey
) As Boolean
public:
virtual bool Remove(
	TKey key
) sealed
abstract Remove : 
        key : 'TKey -> bool 
override Remove : 
        key : 'TKey -> bool  View SourceParameters
- key  TKey
 - The key of the element to remove.
 
Return Value
Booleantrue if the element is successfully removed; otherwise, false.  This method also returns false if 
key was not found in the original 
IDictionaryTKey, TValue.
Implements
IDictionaryTKey, TValueRemove(TKey)
Exceptions| Exception | Condition | 
|---|
| ArgumentNullException | key is null. | 
| NotSupportedException | The IDictionaryTKey, TValue is read-only. | 
See Also