コード例 #1
0
 protected bool Equals(BinaryOperatorNodeBase other)
 {
     return(Equals(LeftOperand, other.LeftOperand) && Equals(RightOperand, other.RightOperand));
 }
コード例 #2
0
ファイル: BinaryOperatorNodeBase.cs プロジェクト: menozz/lens
 protected bool Equals(BinaryOperatorNodeBase other)
 {
     return Equals(LeftOperand, other.LeftOperand) && Equals(RightOperand, other.RightOperand);
 }