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