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