예제 #1
0
 /// <summary>
 /// Serves as a hash function for a particular type.
 /// </summary>
 /// <returns>
 /// A hash code for the current <see cref="T:System.Object"/>.
 /// </returns>
 /// <filterpriority>2</filterpriority>
 public override int GetHashCode()
 {
     unchecked
     {
         int result = id;
         result = (result * 397) ^ Accept.GetHashCode();
         result = (result * 397) ^ Number;
         return(result);
     }
 }