Как читать текстовые файлы вместо использования дел?

Я работаю над проектом, где я отображаю вопросы в текстовых полях. Под каждым из них есть 4 флажка, и пользователь должен выбрать тот, который отвечает на вопрос.

Могу ли я просто поместить все свои вопросы, ответы и т. Д. В файл.txt и загрузить их оттуда? Я не хочу писать case на каждый вопрос (у меня примерно 120 вопросов).

Мой способ сделать это до сих пор:

    case 5: // Multiple Answers
                txtQuestion.Text = "What are the characteristics of the " +
                                   "Main method? (Choose two)";

                grpSingleChoice.Visible = false;
                grpMultipleChoice.Visible = true;

                chkAnswer1.Text = "A. It must always return void";
                chkAnswer2.Text = "B. It is always the first method inside the " +
                                  "main class of a program";
                chkAnswer3.Text = "C. It is the start and end point of a program";
                chkAnswer4.Text = "D. It must always be passed an array of strings " +
                                  "as in static void Main(string[] args)";
                chkAnswer5.Visible = true;
                chkAnswer5.Text = "E. It must be created inside of a class" +
                                  "or a structure";
                break;

1 ответ

Простой способ сделать это может быть:

[START]
Question = Imagine you write code and include a backslash in a string, the compiler ...
Correct = 2
Option = Answer a
Option = Answer b
Option = Answer c
Option = Answer d
[END]

"Теги" будут вашими условиями цикла, поэтому просто используйте Split(lineText, " = ") чтобы получить значения. Но XML - намного лучшее решение:

<xml>
    <question correct="2">
        <description>Imagine you write code and include a backslash in a string, the compiler ....</description>
        <option>answer</option>
        <option>answer</option>
        <option>answer</option>
        <option>answer</option>
    </question>
    <question correct="3">
        <description>Another question....</description>
        <option>answer</option>
        <option>answer</option>
        <option>answer</option>
        <option>answer</option>
    </question> 
</xml>
Другие вопросы по тегам