C# 二維 陣列(動態陣列)
C# 二維(多維) 陣列(動態陣列)
資料來源: https://ithelp.ithome.com.tw/articles/10213228
宣告:
1.宣告一個含有五個陣列元素的整數陣列
int[] score = new int[5]
2.宣告一個二維陣列4\*5,含有20個陣列元素的字串陣列
string[,] name= new string[3,4]
初始化:
一維陣列
單獨給一個值:
a[2]=50;//a陣列第3個數字為50
宣告整個陣列:
int[] a = new int[]{1,2,3,4,5};//a陣列大小為5,裡面的值依序是1,2,3,4,5
二維陣列
單獨給一個值:
a[0,0]=10;//a陣列[0,0]位置的值是10
宣告整個陣列:
int[,] a= new int[]{{1,2,3,4},{5,6,7,8},{9,10,11,12}}
One thought on “C# 二維 陣列(動態陣列)”
C# 二維陣列長度
using System;
namespace width_and_height_of_2d_array
{
class Program
{
static void Main(string[] args)
{
int[,] array2D = new int[5, 10];
Console.WriteLine(array2D.GetLength(0));
Console.WriteLine(array2D.GetLength(1));
}
}
}