lang:csharp:array
Ceci est une ancienne révision du document !
Table des matières
Initialisation des valeurs
string[] array = new string[2]; // creates array of length 2, default values string[] array = new string[] { "A", "B" }; // creates populated array of length 2 string[] array = { "A" , "B" }; // creates populated array of length 2
Comparaison de deux tableaux
Enlever le dernier élément d'une liste
Ecriture d'un tableau vers un fichier
IndexOf insensible à la casse
lang/csharp/array.1497428449.txt.gz · Dernière modification : 2017/06/14 10:20 de root