using System; struct A { public int X=42; } public class Stfld { static A[,] a=new A[10,10]; public static void Main() { a[0,0].X=a[0,0].X +1 ; } }