BaconGame.Question.Question C# (CSharp) Method

Question() public method

public Question ( string text, string answers, int correctAnswer ) : System
text string
answers string
correctAnswer int
return System
        public Question(string text, string[] answers, int correctAnswer)
            : this()
        {
            QuestionText = text;
            _answers = answers;
            _correctAnswer = correctAnswer;
        }