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

◆ Read() [3/13]

static unsafe double System.Threading.Volatile.Read ( ref double location)
inlinestatic

Definition at line 95 of file Volatile.cs.

96 {
97 long num = Read(ref Unsafe.As<double, long>(ref location));
98 return *(double*)(&num);
99 }
static bool Read(ref bool location)
Definition Volatile.cs:67

References System.Threading.Volatile.Read().