/// <summary> /// Constructeur statique. /// </summary> static Resultat() { // Initialisation des Resultat statiques. Critique = new Resultat(1); Echec = new Resultat(2); Succes = new Resultat(3); Epic = new Resultat(4); }
public bool Equals(Resultat other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(other._id == this._id); }