コード例 #1
0
        public override int GetHashCode()
        {
            int hash = 1;

            if (QuestionId.Length != 0)
            {
                hash ^= QuestionId.GetHashCode();
            }
            hash ^= oa_.GetHashCode();
            if (_unknownFields != null)
            {
                hash ^= _unknownFields.GetHashCode();
            }
            return(hash);
        }
コード例 #2
0
 /// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         var hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (QuestionId != null)
         {
             hashCode = hashCode * 59 + QuestionId.GetHashCode();
         }
         if (Answer != null)
         {
             hashCode = hashCode * 59 + Answer.GetHashCode();
         }
         return(hashCode);
     }
 }
コード例 #3
0
ファイル: QuestionReference.cs プロジェクト: rostgaard/02265
 public override int GetHashCode()
 {
     return(QuestionId.GetHashCode());
 }