Interlocked.Exchange Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Sets a variable to a specified value as an atomic operation.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
Exchange<T>(T, T) | Sets a variable of the specified type T to a specified value and returns the original value, as an atomic operation. |
|
Exchange(Double, Double) | Sets a double-precision floating point number to a specified value and returns the original value, as an atomic operation. |
|
Exchange(Int32, Int32) | Sets a 32-bit signed integer to a specified value and returns the original value, as an atomic operation. |
|
Exchange(Int64, Int64) | Sets a 64-bit signed integer to a specified value and returns the original value, as an atomic operation. |
|
Exchange(IntPtr, IntPtr) | Sets a platform-specific handle or pointer to a specified value and returns the original value, as an atomic operation. |
|
Exchange(Object, Object) | Sets an object to a specified value and returns a reference to the original object, as an atomic operation. |
|
Exchange(Single, Single) | Sets a single-precision floating point number to a specified value and returns the original value, as an atomic operation. |
Show: