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

◆ And() [4/4]

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

Definition at line 252 of file Interlocked.cs.

253 {
254 return (ulong)And(ref Unsafe.As<ulong, long>(ref location1), (long)value);
255 }
static int And(ref int location1, int value)

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