public void Decrement(ConcurrentDecimal other)
 {
     Increment(-other.Value);
 }
 public void Increment(ConcurrentDecimal other)
 {
     lock (this)
     {
         value += other.Value;
     }
 }