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

◆ Add() [2/4]

static long System.Threading.Interlocked.Add ( ref long location1,
long value )
inlinestatic

Definition at line 83 of file Interlocked.cs.

84 {
85 return ExchangeAdd(ref location1, value) + value;
86 }
static int ExchangeAdd(ref int location1, int value)

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