本文介绍了Array.GetLength() 和 Array.Length 有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你如何在 C# 中使用 Array.GetLength 函数?

How do you use the Array.GetLength function in C#?

Length 属性和 GetLength 函数有什么区别?

What is the difference between the Length property and the GetLength function?

推荐答案

GetLength 接受一个整数,指定您要查询的数组的维度并返回其长度.Length 属性返回数组中项目的总数:

GetLength takes an integer that specifies the dimension of the array that you're querying and returns its length. Length property returns the total number of items in an array:

int[,,] a = new int[10,11,12];
Console.WriteLine(a.Length);           // 1320
Console.WriteLine(a.GetLength(0));     // 10
Console.WriteLine(a.GetLength(1));     // 11
Console.WriteLine(a.GetLength(2));     // 12

这篇关于Array.GetLength() 和 Array.Length 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-07 06:56