「C#」2次元配列の要素を取得するサンプル

2021年10月22日

書式

データ型(int,string)[,] 配列名 = new データ型(int,string) [行数,列数]{
        {xxx}
}

使用例

using System;

class Arkgame
{

    public static void Main()
    {
        //2次元配列 2行 3列
        int[,] cft = new int[2, 3]
            {
                  {101, 102, 103},
                  {202, 203, 204}
            };

        Console.WriteLine("2次元配列の要素");
        Console.WriteLine(cft[0, 0]);
        Console.WriteLine(cft[0, 1]);
        Console.WriteLine(cft[0, 2]);
        Console.WriteLine(cft[1, 0]);
        Console.WriteLine(cft[1, 1]);
        Console.WriteLine(cft[1, 2]);

        Console.WriteLine("2次元配列の数: " + cft.Length.ToString());
        
        Console.ReadKey();
    }
}

結果

2次元配列の要素
101
102
103
202
203
204
2次元配列の数: 6

 

C#

Posted by arkgame