public static void Main()
int[][] intArray = new int[3][];
intArray[0] = new int[] { 1, 2 };
intArray[1] = new int[] { 3, 4, 5 };
intArray[2] = new int[] { 6, 7, 8, 9 };
int[][] intArray1 = { new[] { 1, 2 }, new[] { 3, 4, 5 }, new[] { 6, 7, 8, 9 } };
Console.WriteLine("\n**********Access each element of the arrays**********\n");
Console.WriteLine(intArray[0][0]);
Console.WriteLine(intArray[1][2]);
Console.WriteLine(intArray[2][1]);
Console.WriteLine("\n**********Access a value of an indexed array element and then assign a value to it with assignment operator (=)**********\n");
Console.WriteLine(intArray[0][0]);
Console.WriteLine(intArray[1][2]);
Console.WriteLine(intArray[2][1]);