由于某种原因,count3
变量抛出了System.NullReferenceException
,但我不知道为什么。在进行故障排除时,我删除了该行,然后删除了System.NullReferenceException
之后的行。我删除了该行,然后"}"
抛出了错误!
很抱歉张贴“我被卡住了,但我不知道为什么要问”,但我似乎真的无法解决这个问题。
bool whichone = true;
int count3 = 0;
int count4 = 0;
foreach (string i in result)
{
if (whichone)
{
foundsoftware[count3] = i;
count3++; //This is the line with the error
whichone = false;
}
else
{
softwarelocation[count4] = i;
count4++;
whichone = true;
}
}
我很乐意提供更多数据。