更新:2007 年 11 月
在 C# 中,数组实际上是对象,而不只是像 C 和 C++ 中那样的可寻址连续内存区域。
C# | 复制代码 |
---|---|
int[] numbers = { 1, 2, 3, 4, 5 }; int lengthOfNumbers = numbers.Length; |
System.Array 类提供了许多其他有用的方法和属性,用于排序、搜索和复制数组。
示例
此示例使用
C# | 复制代码 |
---|---|
class TestArraysClass { static void Main() { // Declare and initialize an array: int[,] theArray = new int[5, 10]; System.Console.WriteLine("The array has {0} dimensions.", theArray.Rank); } } // Output: The array has 2 dimensions. |