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.
What's abaut this one:
List tmpList = intArry.ToList(); tmpList.Add(anyInt); intArry = tmpList.ToArray();