public static void Main()
int[][] jaggedArray = new int[][]{
new int[] {2, 3, 5, 7, 11},
for (int row = 0; row < jaggedArray.Length; row++)
for (int column = 0; column < jaggedArray[row].Length; column++)
Console.Write("[{0}][{1}] = {2}, ", row, column, jaggedArray[row][column]);