예제 #1
0
 /// <summary>
 /// Returns the hashcode for this instance.
 /// </summary>
 /// <returns>A System.Int32 containing the unique hashcode for this instance.</returns>
 public override int GetHashCode()
 {
     unchecked
     {
         return((Row0.GetHashCode() * 397) ^ Row1.GetHashCode());
     }
 }
예제 #2
0
 /// <summary>
 /// Returns the hashcode for this instance.
 /// </summary>
 /// <returns>A System.Int32 containing the unique hashcode for this instance.</returns>
 public override int GetHashCode()
 {
     unchecked
     {
         var hashCode = Row0.GetHashCode();
         hashCode = (hashCode * 397) ^ Row1.GetHashCode();
         hashCode = (hashCode * 397) ^ Row2.GetHashCode();
         return(hashCode);
     }
 }
예제 #3
0
 /// <summary>
 /// Returns the hashcode for this instance.
 /// </summary>
 /// <returns>A System.Int32 containing the unique hashcode for this instance.</returns>
 public override int GetHashCode()
 {
     return(Row0.GetHashCode() ^ Row1.GetHashCode() ^ Row2.GetHashCode());
 }