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

◆ CompareExchange() [7/8]

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

Definition at line 166 of file Interlocked.cs.

167 {
168 return (uint)CompareExchange(ref Unsafe.As<uint, int>(ref location1), (int)value, (int)comparand);
169 }
static int CompareExchange(ref int location1, int value, int comparand)

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