  | IAtomicLongAddAndGet Method  | 
 Returns the name of this IAtomicLong instance.
Atomically adds the given value to the current value.
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.11
Syntaxlong AddAndGet(
	long delta
)
Function AddAndGet ( 
	delta As Long
) As Long
long long AddAndGet(
	long long delta
)
abstract AddAndGet : 
        delta : int64 -> int64 
Parameters
- delta
 - Type: SystemInt64
the value to add 
Return Value
Type: 
Int64name of this instance
Return Value
Type: 
Int64the updated value
RemarksReturns the name of this IAtomicLong instance.
RemarksAtomically adds the given value to the current value.
See Also