Exemple #1
0
 /// <summary>
 /// Checks if the XML game is equal, i.e. the data is equal (to
 /// check if it should be updated).
 /// </summary>
 /// <param name="xmlGame">XML game to compare</param>
 /// <returns>True if equal, false otherwise</returns>
 public bool EqualsXmlGame(PinballXGame xmlGame)
 {
     return(XmlGame != null && XmlGame.Equals(xmlGame));
 }