public void DivideBy(int divide)
 {
     using (locker.DisposableWriteLock())
     {
         x = x / divide;
     }
 }