Существует много способов структурировать эти данные, но есть разумный вариант:
public class Answer
{
public string Option;
public string Text;
}
public class Question
{
public string Text;
public string CorrectOption;
public Answer[] Answers;
}
Затем вы инициализируете свои данные следующим образом:
var questions = new []
{
new Question()
{
Text = "What year is it in the opening scene of the movie?",
CorrectOption = "b",
Answers = new []
{
new Answer() { Option = "a", Text = "1981" },
new Answer() { Option = "b", Text = "1988" },
new Answer() { Option = "c", Text = "1985" },
new Answer() { Option = "d", Text = "1990" },
}
},
new Question()
{
Text = "Peter Quill’s alias is “Star Prince”",
CorrectOption = "b",
Answers = new []
{
new Answer() { Option = "a", Text = "True" },
new Answer() { Option = "b", Text = "False" },
}
}
};
Прелесть этого в том, что он хорошо держит каждый вопрос вместе с ответами и указанием того, какой ответ правильный.