Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

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 106 views
106 views asked Jun 22, 2024 by avibootz
1 answer 55 views
1 answer 134 views
2 answers 218 views
218 views asked Jun 3, 2014 by avibootz
1 answer 78 views
78 views asked Feb 24, 2024 by avibootz
1 answer 163 views
1 answer 122 views
...