我目前有这个:
using (StreamReader sr = new StreamReader("answers.txt"))
{
for (iCountLine = 0; iCountLine < 10; iCountLine++)
{
for (iCountAnswer = 0; iCountAnswer < 4; iCountAnswer++)
{
sQuestionAnswers[iCountLine, iCountAnswer] =
}
}
}
我的文本文件格式如下(10 行文本,每行 4 项以逗号分隔):
example, example, example, example 123, 123, 123, 123
我不确定在 for 循环中的“=”之后需要什么来读取文本文件的内容并将其拆分为 2D 数组。