楼上说的不错!举个例子如下:
using System;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
// 获取整型数组
int[] x = GetArray();
// 输出数组所以元素
for (int i = 0; i < x.Length; i++)
{
Console.WriteLine(x[i]);
}
}
///
/// GetArray返回一个整型数组
///
static int[] GetArray()
{
int[] a = { 1, 2, 3, 4, 5, 6 };
return a;
}
}
}
获得这个数组的引用 像使用其他数组一样使用