public override int GetHashCode() { unchecked { return(((In != null ? In.GetHashCode() : 0) * 397) ^ (Out != null ? Out.GetHashCode() : 0)); } }
public override int GetHashCode() { int hash = 23; hash += hash * 17 + In.GetHashCode(); hash += hash * 17 + Out.GetHashCode(); return(hash); }
public override int GetHashCode() { return(In.GetHashCode() + Out.GetHashCode() + Content.GetHashCode()); }