How to add new item in existing string array in c#.net. i need to preserve the existing data.
|
I would use a List if you need a dynamically sized array:
|
|||||
|
|
That could be a solution;
But for dynamic sized array I would prefer list too. |
|||
|
|
|
Arrays in C# are immutable, e.g. string[], int[]. It means you can't resize them. You need to create a brand new array. Here is the code for Array.Resize:
As you can see it creates a new array with the new size, copies the content of the source array and sets the reference to the new array. The hint for this is the ref keyword for the first parameter. There are lists that can dynamically allocate new slots for new items. This is e.g. List<T>. These contain immutable arrays and resize them when needed (List<T> is not a linked list implementation!). ArrayList is the same thing without Generics (with Object array). LinkedList<T> is a real linked list implementation. Unfortunately you can add just LinkListNode<T> emenets to the list, so you must wrap your own list elements into this node type. I think its use is uncommon. |
|||
|
|
|
Using LINQ:
I like using this as it is a one-liner and very convenient to embed in a switch statement, a simple if-statement, or pass as argument. |
|||
|
|
||||
|
|
|
I agree with Ed. C# does not make this easy the way VB does with ReDim Preserve. Without a collection, you'll have to copy the array into a larger one. |
|||||
|
|
You can expand on the answer provided by @Stephen Chung by using his LINQ based logic to create an extension method using a generic type.
You can then call it directly on the array like this.
Admittedly, the AddRangeToArray() method seems a bit overkill since you have the same functionality with Concat() but this way the end code can "work" with the array directly as opposed to this:
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
Why not try out using the Stringbuilder class. It has methods such as .insert and .append. You can read more about it here: http://msdn.microsoft.com/en-us/library/2839d5h5(v=vs.71).aspx |
|||
|
|
|
Unfortunately using a list won't work in all situations. A list and an array are actually different and are not 100% interchangeable. It would depend on the circumstances if this would be an acceptable work around. |
|||
|
|
protected by Shadow Wizard Feb 29 '12 at 9:39
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.