From e34e4eabf19d4b6f640df5cb9265be503bb9bdf2 Mon Sep 17 00:00:00 2001 From: Augustin AFFOGNON Date: Sat, 22 Oct 2022 19:21:46 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'Sources/BowlingLib?= =?UTF-8?q?/Model/Joueur.cs'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/BowlingLib/Model/Joueur.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Sources/BowlingLib/Model/Joueur.cs b/Sources/BowlingLib/Model/Joueur.cs index 856c323..7f64786 100644 --- a/Sources/BowlingLib/Model/Joueur.cs +++ b/Sources/BowlingLib/Model/Joueur.cs @@ -59,7 +59,11 @@ namespace BowlingLib.Model public override int GetHashCode() { - return HashCode.Combine(id, Id, Pseudo); + return Pseudo.GetHashCode(); } + /* public override int GetHashCode() + { + return HashCode.Combine(id, Id, Pseudo); + }*/ } }