public static MemoryInt operator /(MemoryInt left, MemoryInt right) { MemoryInt newInt = new MemoryInt(); newInt.SetValue(left.GetValue() / right.GetValue()); return(newInt); }
bool Equals(MemoryInt left, MemoryInt right) { return(left.GetValue() == right.GetValue()); }