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

◆ And() [3/4]

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

Definition at line 226 of file Interlocked.cs.

227 {
228 return (uint)And(ref Unsafe.As<uint, int>(ref location1), (int)value);
229 }
static int And(ref int location1, int value)

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