1. ホーム
  2. c#

[解決済み] C#で多次元配列の行/列の長さを取得する方法は?

2023-07-21 12:54:15

質問

C#で多次元配列の行や列の長さを取得するにはどうしたらよいですか?

例えば

int[,] matrix = new int[2,3];

matrix.rowLength = 2;
matrix.colLength = 3;

どのように解決するのですか?

matrix.GetLength(0)  -> Gets the first dimension size

matrix.GetLength(1)  -> Gets the second dimension size