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

◆ Exchange() [7/8]

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

Definition at line 146 of file Interlocked.cs.

147 {
148 return (uint)Exchange(ref Unsafe.As<uint, int>(ref location1), (int)value);
149 }
static int Exchange(ref int location1, int value)

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