using System; using System.Collections.Generic; namespace ArraysExample { class Program { static void Main(string[] args) { //Some of the following lines are not correct in C#! char[] charArray1 = "Ahoj"; double[] doubleArray1 = new double[] { 0.0 }; int[][] intArray1 = {{1,2},{2,3}}; int[][] intArray2 = { new int[] { 1, 2 }, new int[] { 2, 3 } }; int[] intArray3 = new int[] { 1, 2, 3 }; } } }