예제 #1
0
        public override int GetHashCode()
        {
            int hash = 1;

            if (Stamp != 0UL)
            {
                hash ^= Stamp.GetHashCode();
            }
            if (Data.Length != 0)
            {
                hash ^= Data.GetHashCode();
            }
            return(hash);
        }
예제 #2
0
        public override int GetHashCode()
        {
            int hash = 1;

            if (Stamp != 0UL)
            {
                hash ^= Stamp.GetHashCode();
            }
            if (Seq != 0UL)
            {
                hash ^= Seq.GetHashCode();
            }
            if (Content.Length != 0)
            {
                hash ^= Content.GetHashCode();
            }
            return(hash);
        }
예제 #3
0
 public override int GetHashCode()
 {
     return(Stamp.GetHashCode());
 }