public Question() { Text = ""; Answers = new Answer[15]; }
public Question(string quest, Answer[] answers) { this.Answers = answers; this.Text = quest; }