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