C#写一个方法,返回值是一个数组,怎么用这个数组

2025-01-20 22:37:35
推荐回答(2个)
回答1:

楼上说的不错!举个例子如下:

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;
        }
    }
}

回答2:

获得这个数组的引用 像使用其他数组一样使用