我想将数组添加到列表或多维数组(不是一次全部...)。但我真的不明白为什么这应该那么难。
可以说我有这个:
string[] a = { "h", "b"};
string[] b = { "c", "a", "i" };
string[] c = { "out", "in", "file", "test" };
ArrayList x = null;
x.Add(a); //error: Object reference not set to an instance of an object.
x.Add(b);
x.Add(c);
我可以使用而不是 ArrayList 也许
string[,] x = null;
但是没有选项 .Add
假设我有一个未知数量的大小未知的字符串 [] - 如何将它们添加到列表/多维数组中?再说一遍:我想一一添加这些字符串[]。有任何想法吗?