Exemplo n.º 1
0
 public static void VolatileWrite(ref this double value, double newValue) => Atomic.Write(ref value, newValue);
Exemplo n.º 2
0
 public static void VolatileWrite(ref this int value, int newValue) => Atomic.Write(ref value, newValue);
Exemplo n.º 3
0
 public static void VolatileWrite(ref this long value, long newValue) => Atomic.Write(ref value, newValue);
Exemplo n.º 4
0
 public static void VolatileWrite(ref this float value, float newValue)
 => Atomic.Write(ref value, newValue);