Adding elements to a C# array

前端 未结 10 407
野趣味
野趣味 2021-01-11 19:29

I would like to programmatically add or remove some elements to a string array in C#, but still keeping the items I had before, a bit like the VB function ReDim Preserve.

10条回答
  •  礼貌的吻别
    2021-01-11 19:45

    What's abaut this one:

    List tmpList = intArry.ToList(); tmpList.Add(anyInt); intArry = tmpList.ToArray();

提交回复
热议问题