我正在使用二维数组。我想要的是在我的二维数组的特定列中动态添加元素,名为symboltable2
. 我一直在这样做;
结果是另一个一维数组,其中有某些单词:
string[,] symboltable2 = new string[,];
if (result.Contains("int")) {
for (int todynamic = 0; todynamic < result.GetLength(0); todynamic++) {
symboltable2[todynamic, 6] = "int";
}
for (int sym2 = 0; i < symboltable1.GetLength(0); sym2++) {
f4.listBox6.Items.Add(symboltable1[sym2, 5]); // To show if the values are added or not
}
}
但上面的代码没有给我任何结果......请帮助:(