How is an array of string where you do not know where the array size in c#.NET?
String[] array = new String[]; // this does not work
|
|
|
|
|
|
|
Is there a specific reason why you need to use an array? If you don't know the size before hand you might want to use
Will give you an output of
MSDN - List(T) for more information |
||||||||||
|
|
|
You can't create an array without a size. You'd need to use a list for that. |
||
|
|
|
|
I think you may be looking for the StringBuilder class. If not, then the generic List class in string form:
Or, if you need to be absolutely sure that the strings remain in order:
Remember, with the List class, the order of the items is an implementation detail and you are not guaranteed that they will stay in the same order you put them in. |
||||||||||
|
|
|
I suppose that the array size if a computed value.
|
||
|
|
|
|
Can you use a List strings and then when you are done use strings.ToArray() to get the array of strings to work with? |
||
|
|
|
|
As others have mentioned you can use a
|
||
|
|
|
|
If you will later know the length of the array you can create the initial array like this:
And later when you know the length you can finish initializing it like this
|
||
|
|
|
|
You have to specify the size of an array when you instantiate it. You can still declare the array and instantiate it later. For instance:
|
||
|
|