bonsoir à tous ,
voiçi un code (tout simple) :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
string [][] noms= new string[3][];
for (int i=0;i<noms.Length;i++) {
noms[i]=new string[i+1];
}
Je ne comprend pas pourquoi : noms[i]=new string[i+1];
et pourquoi pas : noms[i]=new string[i];
?!!?