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
lang/csharp/array.1481908945.txt.gz · Dernière modification : 2016/12/16 18:22 de root