public override int GetHashCode() { int hash = 23; hash += hash * 17 + In.GetHashCode(); hash += hash * 17 + Out.GetHashCode(); return(hash); }
/// <summary> /// Hash Code /// </summary> public override int GetHashCode() { return(ExitCode ^ Out.GetHashCode() ^ Error.GetHashCode()); }
public override int GetHashCode() { return(In.GetHashCode() + Out.GetHashCode() + Content.GetHashCode()); }