日常我们碰到多维数组时,经常会遇到获取某个多维数组行数与列数的需求,那么,在c#中我们该如何操作才能正确的获取某个多维数组的行数与列数呢?下面,济南云服务器小编就来和大家一起分享一种通过编码的方式获取多维数组行数与列数的方法,希望,对大家了解多维数组有所帮助
关键代码:
static void Main(string[] args) { int[,] matrix = new int[3, 4] { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 } }; int rows = matrix.GetLength(0); int columns = matrix.GetLength(1); Console.WriteLine("行{0},列{1}",rows,columns); Console.ReadKey(); }
评论