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

◆ CompareExchange() [4/8]

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

Definition at line 179 of file Interlocked.cs.

180 {
181 return (IntPtr)CompareExchange(ref Unsafe.As<IntPtr, long>(ref location1), (long)value, (long)comparand);
182 }
static int CompareExchange(ref int location1, int value, int comparand)

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