public Livello(int id) { singleton = QuestionLoader.Instance; domande = singleton.getQuestions(id); this.id = id; if (appSettings.Contains("bestscore" + id)) { string content = appSettings["bestscore" + id].ToString(); best_score = content; } else { best_score = "-"; } }
public Livello(int id) { ql = new QuestionLoader(); domande = ql.getQuestions(id); this.id = id; if (appSettings.Contains("bestscore" + id)) { string content = appSettings["bestscore" + id].ToString(); best_score = content; } else { best_score = "-"; } }