示例#1
0
 public void AddFingerprint(ExpressionFingerprint fingerprint)
 {
     if (fingerprint != null)
     {
         fingerprint.AddToHashCodeCombiner(this);
     }
     else
     {
         this.AddInt32(0);
     }
 }
 protected bool Equals(ExpressionFingerprint other)
 {
     return(((other != null) && (this.NodeType == other.NodeType)) && object.Equals(this.Type, other.Type));
 }