What is a two-dimensional array in C#?

WBOY
Release: 2023-08-26 15:17:17
forward
1560 people have browsed it

C# 中的二维数组是什么?

A two-dimensional array is a list of one-dimensional arrays.

A two-dimensional array can be initialized by specifying a value within parentheses for each row.

int [,] a = new int [2,2] {
   {0, 1} ,
   {4, 5}
};
Copy after login

The following example shows how to use a two-dimensional array in C# -

using System;

namespace ArrayApplication {
   class MyArray {
      static void Main(string[] args) {
         /* an array with 3 rows and 2 columns*/
         int[,] a = new int[3, 2] {{0,0}, {1,2}, {2,4} };
         int i, j;

         /* output each array element's value */
         for (i = 0; i < 3; i++) {

            for (j = 0; j < 2; j++) {
               Console.WriteLine("a[{0},{1}] = {2}", i, j, a[i,j]);
            }
         }
         Console.ReadKey();
      }
   }
}
Copy after login

The above is the detailed content of What is a two-dimensional array in C#?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!