I am using a multidimensional array to keep track of answers:
public string[,] answersArray = new string[50, 10];
The first dimension of the array keeps track of questions (max. 50 questions), whereas the second dimension keeps track of each question's answers (max. 10). The amount of answers for each question is variable. Upon loading a question, I want to determine the amount of answers for that particular question. Then I can use that amount in a for loop to load and show these answers. Is there an easy way to obtain this, or would I have to write something myself? I know I could just declare another array to keep track of the amount of answers for each question, and just use that to get it done, but I was just wondering if there was an easier solution.