Exemplo n.º 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());
     }
 }
Exemplo n.º 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);
     }
 }
Exemplo n.º 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());
 }