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

◆ CompareExchange() [8/8]

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

Definition at line 173 of file Interlocked.cs.

174 {
175 return (ulong)CompareExchange(ref Unsafe.As<ulong, long>(ref location1), (long)value, (long)comparand);
176 }
static int CompareExchange(ref int location1, int value, int comparand)

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