コード例 #1
0
 public bool Equals(DnfClause <T_Identifier> other)
 {
     if (other != null)
     {
         return(other.Literals.SetEquals(this.Literals));
     }
     return(false);
 }
コード例 #2
0
 public bool Equals(DnfClause <T_Identifier> other)
 {
     return(null != other &&
            other.Literals.SetEquals(Literals));
 }