C#中声明一个不确定长度的数组?

高分请教一下,C#中声明一个不确定长度的数组?
最新回答
我不勇敢

2024-11-07 02:28:52

12.不定长数组:
13.List<List<int>> aaa = new List<List<int>>(); aaa.Add(new List<int> { 1, 2, 3, 4 }); aaa.Add(new List<int> { 1, 2, 3, 4, 5, 6 });
14.List<List<int>> aaa = new List<List<int>>(); List<int> bbb = new List<int>(), ccc = new List<int>();
15. bbb.Add(1); bbb.Add(1); bbb.Add(1); aaa.Add(bbb);
16. ccc.Add(1); ccc.Add(1); ccc.Add(1); ccc.Add(1); ccc.Add(1); ccc.Add(1); aaa.Add(ccc);
17.int[][][] 论 = new int[][][]
18. {
19. new int[][] { new int[]{ 2, 7, 12 }, new int[] { 6, 12 }, new int[] { 1, 6, 9 }, new int[] { 2, 5, 12 }, new int[] { 6, 12 }, new int[] { 1, 4, 10 }, new int[] { 2, 6, 12 }, new int[] { 5, 8, 9 }, new int[] { 2, 6, 9 }, new int[] { 5, 8, 11 }}
20. };
http://blog.csdn.net/xianfajushi/article/details/11999309