Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C# 中进行编程,并且我有一个对象数组(称为A)。现在我想要另一个数组,每个单元格都包含一个A(Called B) 数组。例如:
A
B
B=[A1,A2,A3];
有人可以指导我解决问题吗?
您可能知道,对象数组A定义为:
A[]
然后,一个数组...A对象数组定义为:
A[][]
您可以像这样创建它:
A[] a1 = new A[10]; A[] a2 = new A[20]; A[] a3 = new A[5]; A[][] b = new A[][] {a1, a2, a3};
您可以按以下方式编制索引:
var value = b[2][3];
这将获得索引 2 处的数组和该数组的元素 3。