How to pass jagged array to method in C#

1 Answer

0 votes
using System;

class Program
{
    static void Display(int[][] arr) {
        for (int i = 0; i < arr.Length; i++) {
            for (int j = 0; j < arr[i].Length; j++) {
                Console.Write($"{arr[i][j]}\t");
            }
            Console.Write("\n");
        }
    }
    static void Main() {
        int[][] arr = new int[2][];

        arr[0] = new int[]{4, 9, 7, 8};
        arr[1] = new int[3];

        arr[1][0] = 9;
        arr[1][1] = 1;
        arr[1][2] = 5;

        Display(arr);
    }
}



/*
run:

4	9	7	8	
9	1	5		

*/

 



answered Dec 13, 2020 by avibootz

Related questions

2 answers 113 views
113 views asked Jun 22, 2024 by avibootz
1 answer 76 views
1 answer 149 views
2 answers 239 views
239 views asked Jun 3, 2014 by avibootz
1 answer 93 views
93 views asked Feb 24, 2024 by avibootz
1 answer 187 views
...