Example #1
0
        public override int GetHashCode()
        {
            int hash = 23;

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