using System;
using System.Linq;
public class Simple {
public static void Main() {
string[] toto = new string[5];
for(int i = 0; i < toto.Length; i++){
toto[i] = "a"+i;
}
Console.WriteLine("avant dernière case : " +toto[toto.Length-2]);