C# プログラムに問題があります。10 個の質問と 10 個の画像を含むクイズを作成しました。私Length cannot be less than zero.\r\nParameter name: length
はラインでこれを取得します
int imageIndex = int.Parse(line.Substring(0, delimiter));
私のメモ帳ファイルに画像インデックスを含めたとしても:
3:What is the foo in the bar?
10:How can you add a widget?
4:Why pick a bar over a foo?
コードは次のとおりです。
if (nr >= questions.Count)
{
button1.Enabled = false;
}
else
{
Random r = new Random();
int x;
do
{
x = r.Next(questions.Count);
}
while (questions[x].displayed == true);
textBox1.Text = questionText;
radioButton1.Text = questions[x].answer1;
radioButton2.Text = questions[x].answer2;
questions[x].displayed= true;
current_question = x;
}