| 
            
              ImmutableDictionaryTKey, TValueRemove(KeyValuePairTKey, TValue) Method
             | 
          
        
        Removes the first occurrence of a specific object from the ICollectionT.
        
        Namespace: GSF.ImmutableAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
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  View SourceParameters
- item  KeyValuePairTKey, TValue
 - The object to remove from the ICollectionT.
 
Return Value
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)
See Also