Exemplo n.º 1
0
 public override int GetHashCode()
 {
     unchecked
     {
         return(((In != null ? In.GetHashCode() : 0) * 397) ^ (Out != null ? Out.GetHashCode() : 0));
     }
 }
Exemplo n.º 2
0
        public override int GetHashCode()
        {
            int hash = 23;

            hash += hash * 17 + In.GetHashCode();
            hash += hash * 17 + Out.GetHashCode();
            return(hash);
        }
Exemplo n.º 3
0
 public override int GetHashCode()
 {
     return(In.GetHashCode() + Out.GetHashCode() + Content.GetHashCode());
 }