コード例 #1
0
 public override int GetHashCode()
 {
     if (this.value == null)
     {
         return 0;
     }
     return BitConvertor.ToInt32(this.value, 0) ^
         BitConvertor.ToInt32(this.value, 4) ^
         BitConvertor.ToInt32(this.value, 8) ^
         BitConvertor.ToInt32(this.value, 12);
 }