Ejemplo n.º 1
0
 /// <summary>
 /// Compares Fdd's based on their position in the FDD array
 /// </summary>
 /// <param name="fdd">The FDD to compare the current FDD to</param>
 /// <returns>true if the FDD's have the same index, else false</returns>
 public bool Equals(Fdd fdd)
 {
     return(this.GetHashCode() == fdd.GetHashCode());       //GetHashCode is unique
 }