Параметры инициализации массива строк [дубликат]


этот вопрос уже есть ответ здесь:

какие параметры у меня есть при инициализации

4 64

4 ответа:

у вас есть несколько вариантов:

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

основные:

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();
string[] str = new string[]{"1","2"};
string[] str = new string[4];