web-dev-qa-db-ja.com

int配列のリストを作成する方法は?

リストを作成したいのですが、C言語の構造体の配列と同様に、リストの各要素は配列です。 C#で実行できますか?どうもありがとう!

- 違う: List<int[]> arrayList = new List<int[]>;

20
Ashot Seropian

新しい句の終わりに括弧がありません。

List<int[]> arrayList = new List<int[]>();

43
Robert Davis

開始値がわかっている場合は、次のように初期化することもできます。

List<int[]> arrayList = new List<int[]>
{
    new int[] { 1, 2, 3, 4 },
    new int[] { val1, val2, val3 },
    otherIntArray
};
7
JG in SD
List<Int[]> arrList = new List<Int[]>();
int[] ArrayOfInts = new int[10];

必要に応じて記入してください

arrList.Add(ArrayOfInts);
5
Marcus Davies