vote up 0 vote down star

what options do I have when initializing string[] object?

flag

44% accept rate

5 Answers

vote up 3 vote down check

You have several options:

string[] items = { "Item1", "Item2", "Item3", "Item4" };

string[] items = new string[]
{
  "Item1", "Item2", "Item3", "Item4"
};

string[] items = new string[10];
items[0] = "Item1";
items[1] = "Item2"; // ...
link|flag
1  
Don't forget the string[] items = { "Item1", "Item2", "Item3", "Item4" }; shortcut. – Luke Oct 1 at 16:19
@Luke: Thanks, I indeed forgot about it. – Will Eddins Oct 1 at 16:20
vote up 2 vote down

Basic:

string[] myString = new string[]{"string1", "string2"};

or

string[] myString = new string[4];
myString[0] = "string1"; // etc.

Advanced: From a List

list<string> = new list<string>(); 
//... read this in from somewhere
string[] myString = list.ToArray();

From StringCollection

StringCollection sc = new StringCollection();
/// read in from file or something
string[] myString = sc.ToArray();
link|flag
vote up 3 vote down

MSDN has the skinny on this.

link|flag
vote up 1 vote down
string[] str = new string[]{"1","2"};
string[] str = new string[4];
link|flag
vote up 0 vote down

Start with this: link

link|flag
The next time you feel the urge to lmgtfy, see this: meta.stackoverflow.com/search?q=lmgtfy – Robert Harvey Nov 6 at 22:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.