如何在c#中向List中添加int值集合
本文关键字:添加 int 集合 List 中向 | 更新日期: 2023-09-27 18:12:49
我创建了这个数组列表:
List<int[]> arrayList_objects = new List<int[]>();
现在我想,在按下按钮的那一刻,一个3*1的int数组被添加,这就是我得到的:
arrayList_objects.Add(int[](0,1,2))
现在给了我一个语法错误。谢谢你的努力。
像这样创建一个数组列表:
List<int[]> arrayList = new List<int[]>();
或者像这样:
List<int[]> arrayList = new List<int[]>
{
new int[] { 1, 2, 3, 4 },
new int[] { 5, 6, 7 }
};
然后做你想做的:)