示例#1
0
 public override bool Compare(ValueBase OtherValue)
 {
     if (OtherValue != null && OtherValue.GetValueType() == this._ValueType)
     {
         return(Value == ((BooleanValue)OtherValue).Value);
     }
     else
     {
         return(false);
     }
 }
示例#2
0
 public override bool Compare(ValueBase OtherValue)
 {
     if (OtherValue != null && OtherValue.GetValueType() == this._ValueType)
     {
         return(((TableValue)OtherValue).Compare(this));
     }
     else
     {
         return(false);
     }
 }