Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Exchange() [5/8]

static IntPtr System.Threading.Interlocked.Exchange ( ref IntPtr location1,
IntPtr value )
inlinestatic

Definition at line 159 of file Interlocked.cs.

160 {
161 return (IntPtr)Exchange(ref Unsafe.As<IntPtr, long>(ref location1), (long)value);
162 }
static int Exchange(ref int location1, int value)

References System.Threading.Interlocked.Exchange(), and System.value.