示例#1
0
 public HashCode Add(HashCode hashCode)
 {
     unchecked
     {
         return new HashCode(this.value ^ (this.value << 5) + (this.value >> 2) + hashCode.value);
     }
 }