상속: QValue
예제 #1
0
 public BoolValue Or(BoolValue secondValue)
 {
     return(new BoolValue(_value || secondValue.Value()));
 }
 public BoolValue Or(BoolValue secondValue)
 {
     return new BoolValue(_value || secondValue.Value());
 }
예제 #3
0
 public BoolValue And(BoolValue secondValue)
 {
     return(new BoolValue(_value && secondValue.Value()));
 }
 public BoolValue And(BoolValue secondValue)
 {
     return new BoolValue(_value && secondValue.Value());
 }