From 1edb22dbb247f19ef736c2eed0e127ede91d3cfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20F=C3=A9lix?= <felixantoine67@yahoo.fr> Date: Wed, 1 Apr 2020 19:10:44 +0200 Subject: [PATCH] Correctif d'un appel de fonction incorrect dans "Eleve.cs". --- psychorientation/psychorientation/eleve.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psychorientation/psychorientation/eleve.cs b/psychorientation/psychorientation/eleve.cs index 3623a7e..d2660fe 100644 --- a/psychorientation/psychorientation/eleve.cs +++ b/psychorientation/psychorientation/eleve.cs @@ -94,7 +94,7 @@ namespace psychorientation { foreach(Note n in listeNotes) { - res += n.getNote(); + res += n.GetNote(); } } return res / this.listeNotes.Count; -- GitLab