定义:

int[][] a = new int[3][];
a[0] = new int[10];
a[1] = new int[5];
Console.Write("{0},{1}", a[0].Length, a[1].Length);

不同的行可以分配不同的空间