protected bool Equals(ExpressionTreeBranch <T>?other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(Left, other.Left) && Equals(Right, other.Right));
 }
Exemplo n.º 2
0
 protected bool Equals(ExpressionTreeBranch <T> other)
 {
     return(Equals(Left, other.Left) && Equals(Right, other.Right));
 }