Quelles sont les options dont je dispose lors de l'initialisation string[]
objet ?
Réponses
Trop de publicités?
Oplopanax
Points
1229
De base :
string[] myString = new string[]{"string1", "string2"};
o
string[] myString = new string[4];
myString[0] = "string1"; // etc.
Avancé : À partir d'une liste
list<string> = new list<string>();
//... read this in from somewhere
string[] myString = list.ToArray();
De StringCollection
StringCollection sc = new StringCollection();
/// read in from file or something
string[] myString = sc.ToArray();
Mike Blandford
Points
2050
itsmatt
Points
18905