コード例 #1
0
        public static MemoryInt operator /(MemoryInt left, MemoryInt right)
        {
            MemoryInt newInt = new MemoryInt();

            newInt.SetValue(left.GetValue() / right.GetValue());
            return(newInt);
        }
コード例 #2
0
 bool Equals(MemoryInt left, MemoryInt right)
 {
     return(left.GetValue() == right.GetValue());
 }