Esempio n. 1
0
 public LongPtr Subtract(LongPtr other)
 => new LongPtr(_value - other._value);
Esempio n. 2
0
 public LongPtr Add(LongPtr other)
 => new LongPtr(_value + other._value);