예제 #1
0
 public clsChoice(string text, int number, clsChoiceNum one, clsChoiceNum two)
 {
     initText  = text;
     choiceOne = one;
     choiceTwo = two;
     numChoice = number;
 }
예제 #2
0
 public clsChoice(string text, int number, clsChoiceNum one, clsChoiceNum two, clsChoiceNum three)
 {
     choiceOne   = one;
     choiceTwo   = two;
     choiceThree = three;
     initText    = text;
     numChoice   = number;
 }
예제 #3
0
 public clsChoice(string text, int number, clsChoiceNum one, clsChoiceNum two, clsChoiceNum three, clsChoiceNum four, clsChoiceNum five, clsChoiceNum six)
 {
     choiceOne   = one;
     choiceTwo   = two;
     choiceThree = three;
     choiceFour  = four;
     choiceFive  = five;
     choiceSix   = six;
     initText    = text;
     numChoice   = number;
 }