コード例 #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         int hash = 23;
         hash = hash * 37 + (Standings != null ? Standings.GetHashCode() : 0);
         hash = hash * 37 + (Fixtures != null ? Fixtures.GetHashCode() : 0);
         hash = hash * 37 + (Results != null ? Results.GetHashCode() : 0);
         return(hash);
     }
 }