예제 #1
0
 private VolatileLong(VolatileLong value) : this()
 {
     Set(value);
 }
예제 #2
0
 private VolatileLong(VolatileLong value): this()
 {
     Set(value);
 }
예제 #3
0
 private static VolatileLong Add(VolatileLong left, VolatileLong right)
 {
     left.Set(left.Get() + right.Get());
     return(left.Get());
 }
예제 #4
0
 private static VolatileLong Add(VolatileLong left, VolatileLong right)
 {
     left.Set(left.Get() + right.Get());
     return left.Get();
 }