关于二维数组GetLength的用法
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp8
{
class Program
{
static void Main(string[] args)
{
int[,] text = new int[,]{ { 1, 2, 3 }, { 1, 2, 3 } };
Console.Write(text.GetLength(1));
}
括号里是0输出2
括号里为1输出3
求解