예제 #1
0
 public static COperator10 On(COperator10 arg1, COperator10 arg2)
 {
     return(arg1.op_Add(arg2));
 }
예제 #2
0
 public static COperator10 On(COperator10 arg1, COperator10 arg2) {
     return arg1.op_Add(arg2);
 }
예제 #3
0
 public virtual COperator10 op_Add(COperator10 other)
 {
     return(new COperator10(this.Value + other.Value));
 }
예제 #4
0
 public virtual COperator10 op_Add(COperator10 other) {
     return new COperator10(this.Value + other.Value);
 }