  | IMapTKey, TValueRemove Method (Object) | 
 Removes the mapping for a key from this map if it is present.
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.10
SyntaxTValue Remove(
	Object key
)
Function Remove ( 
	key As Object
) As TValue
TValue Remove(
	Object^ key
)
abstract Remove : 
        key : Object -> 'TValue 
Parameters
- key
 - Type: SystemObject
key 
Return Value
Type: 
TValue
                previous value associated with 
key or 
null
                if there was no mapping for 
key .
            
Remarks
                Removes the mapping for a key from this map if it is present.
                
                    The map will not contain a mapping for the specified key once the call returns.
                
See Also