Beispiel #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         var hashCode = (_pipeline != null ? _pipeline.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (_graph != null ? _graph.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (_node != null ? _node.GetHashCode() : 0);
         return(hashCode);
     }
 }