Esempio n. 1
0
 public ObjectBase DivBy(ObjectBase other)
 {
     return(new ObjectBase(this.value / other.value));
 }
Esempio n. 2
0
 public ObjectBase SubBy(ObjectBase other)
 {
     return(new ObjectBase(this.value - other.value));
 }
Esempio n. 3
0
 public ObjectBase MulBy(ObjectBase other)
 {
     return(new ObjectBase(this.value * other.value));
 }
Esempio n. 4
0
 public ObjectBase AddTo(ObjectBase other)
 {
     return(new ObjectBase(this.value + other.value));
 }