我想构建二维数组的字符串,其中一维的长度为2.与此类似
string[,] array = new string[,] { {"a", "b"}, {"c", "d"}, {"e", "f"}, {"g", "h"} }
干
Listlist = new List (); list.Add(new string[2] {"a", "b"}); list.Add(new string[2] {"c", "d"}); list.Add(new string[2] {"e", "f"}); list.Add(new string[2] {"g", "h"}); list.ToArray();
给我
string[][]
但不是
string[,]
阵列.
只是好奇,是否有动态构建的技巧
string[,]
不知怎的?
你可以这样做.
List>
这个想法是Key Value Pair会模仿你复制的字符串数组.