web-dev-qa-db-ja.com

文字列配列を初期化するためのオプション

string[]オブジェクトを初期化するとき、どのようなオプションがありますか?

83
mrblah

いくつかのオプションがあります:

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"; // ...
152
Will Eddins

基本:

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

または

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

高度:リストから

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

StringCollectionから

StringCollection sc = new StringCollection();
/// read in from file or something
string[] myString = sc.ToArray();
16
Blue Toque
string[] str = new string[]{"1","2"};
string[] str = new string[4];
2
Mike Blandford
2
itsmatt