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

◆ Exchange() [8/8]

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

Definition at line 153 of file Interlocked.cs.

154 {
155 return (ulong)Exchange(ref Unsafe.As<ulong, long>(ref location1), (long)value);
156 }
static int Exchange(ref int location1, int value)

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