Increments a specified variable and stores the result, as an atomic operation.
Public Shared Function Increment ( _ ByRef location As Long _ ) As Long
public static long Increment( ref long location )
public: static long long Increment( long long% location )
static member Increment : location:int64 byref -> int64
The address of location is a null pointer.
This method handles an overflow condition by wrapping: if location = Int64..::.MaxValue, location + 1 = Int64..::.MinValue. No exception is thrown.
The Read method and the 64-bit overloads of the Increment, Decrement, and Add methods are truly atomic only on systems where a System..::.IntPtr is 64 bits long. On other systems, these methods are atomic with respect to each other, but not with respect to other means of accessing the data. Thus, to be thread safe on 32-bit systems, any access to a 64-bit value must be made through the members of the Interlocked class.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2