public static Stade[] getAllStade(SqlConnection c) { object[] result = Fonction.select(c, "stade", null, null); Stade[] reponse = new Stade[result.Length]; for (int i = 0; i < result.Length; i++) { reponse[i] = (Stade)result[i]; } return(reponse); }