在C#中动态创建数组

时间:2009-05-19 05:48:00

标签: c#

如何在C#中动态创建数组?

7 个答案:

答案 0 :(得分:21)

我想补充Natrium的答案,即泛型集合也支持这种.ToArray()方法。

List<string> stringList = new List<string>();
stringList.Add("1");
stringList.Add("2");
stringList.Add("3");
string[] stringArray = stringList.ToArray();

答案 1 :(得分:8)

首先制作一个arraylist。添加/删除项目。然后ArrayList.ToArray()

还有你的阵列!

答案 2 :(得分:4)

object foo = Array.CreateInstance(typeof(byte), length);

答案 3 :(得分:4)

好的,所以数组初始化每次都会让我 。所以我花了10分钟才做到这一点。

    static void Main(string[] args)
    {
        String[] as1 = new String[] { "Static", "with", "initializer" };
        ShowArray("as1", as1);

        String[] as2 = new String[5];
        as2[0] = "Static";
        as2[2] = "with";
        as2[3] = "initial";
        as2[4] = "size";
        ShowArray("as2", as2);

        ArrayList al3 = new ArrayList();
        al3.Add("Dynamic");
        al3.Add("using");
        al3.Add("ArrayList");
        //wow! this is harder than it should be
        String[] as3 = (String[])al3.ToArray(typeof(string));
        ShowArray("as3", as3);

        List<string> gl4 = new List<string>();
        gl4.Add("Dynamic");
        gl4.Add("using");
        gl4.Add("generic");
        gl4.Add("list");
        //ahhhhhh generic lubberlyness :)
        String[] as4 = gl4.ToArray();   
        ShowArray("as4", as4);
    }

    private static void ShowArray(string msg, string[] x)
    {
        Console.WriteLine(msg);
        for(int i=0;i<x.Length;i++)
        {
            Console.WriteLine("item({0})={1}",i,x[i]);
        }
    }

答案 4 :(得分:1)

您也可以像使用其他对象类型一样使用new运算符:

int[] array = new int[5];

或使用变量:

int[] array = new int[someLength];

答案 5 :(得分:-1)

使用通用List或ArrayList。

答案 6 :(得分:-1)

int[] array = { 1, 2, 3, 4, 5};

for (int i=0;i<=array.Length-1 ;i++ ) {
  Console.WriteLine(array[i]);
}