Exemple #1
0
 internal PollQuestion(uint Index, string Question, int AType, string[] Answers, string CorrectAnswer)
 {
     this.Index         = Index;
     this.Question      = Question;
     this.AType         = (PollQuestion.PollAnswerType)AType;
     this.Answers       = Answers.ToList <string>();
     this.CorrectAnswer = CorrectAnswer;
 }
Exemple #2
0
		internal PollQuestion(uint Index, string Question, int AType, string[] Answers, string CorrectAnswer)
		{
			this.Index = Index;
			this.Question = Question;
			this.AType = (PollQuestion.PollAnswerType)AType;
			this.Answers = Answers.ToList<string>();
			this.CorrectAnswer = CorrectAnswer;
		}