Indexeur
De Banane Atomic
Aller à la navigationAller à la recherche
public class Class { int[] array = new int[5]; public int this[int index] { get { return array[index]; } set { array[index] = value; } } } Class c = new Class(); c[0] = 0; |