Interlocked::CompareExchange Method (IntPtr%, IntPtr, IntPtr)
Compares two platform-specific handles or pointers for equality and, if they are equal, replaces the first one.
Assembly: mscorlib (in mscorlib.dll)
public: static IntPtr CompareExchange( IntPtr% location1, IntPtr value, IntPtr comparand )
Parameters
- location1
-
Type:
System::IntPtr%
The destination IntPtr, whose value is compared with the value of comparand and possibly replaced by value.
- value
-
Type:
System::IntPtr
The IntPtr that replaces the destination value if the comparison results in equality.
- comparand
-
Type:
System::IntPtr
The IntPtr that is compared to the value at location1.
| Exception | Condition |
|---|---|
| NullReferenceException | The address of location1 is a null pointer. |
If comparand and the value in location1 are equal, then value is stored in location1. Otherwise, no operation is performed. The compare and exchange operations are performed as an atomic operation. The return value of this method is the original value in location1, whether or not the exchange takes place.
Note |
|---|
IntPtr is a platform-specific type. |
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
