class InitializerDemo { int[] field = {0, 1, 2, 3, 4, 5, 6}; char[,] chars = { {'A', 'B', 'C'}, {'D', 'E', 'F'}, }; InitializerDemo() { int[] field = new int[]{0, 1, 2, 3, 4, 5, 6}; string[,] strArray = {{"John", "Doe"}, {"1", "2"}}; field[1] = 1 + field[1]; strArray[0,2] = "OK"; } }