Пример #1
0
 public void AddFingerprint(ExpressionFingerprint fingerprint)
 {
     if (fingerprint != null)
     {
         fingerprint.AddToHashCodeCombiner(this);
     }
     else
     {
         AddInt32(0);
     }
 }
Пример #2
0
 public void AddFingerprint(ExpressionFingerprint fingerprint)
 {
     if (fingerprint != null)
     {
         fingerprint.AddToHashCodeCombiner(this);
     }
     else
     {
         AddInt32(0);
     }
 }
Пример #3
0
 protected bool Equals(ExpressionFingerprint other)
 {
     return (other != null)
            && (this.NodeType == other.NodeType)
            && Equals(this.Type, other.Type);
 }
Пример #4
0
 protected bool Equals(ExpressionFingerprint other)
 {
     return((other != null) &&
            (this.NodeType == other.NodeType) &&
            Equals(this.Type, other.Type));
 }