You can bind an array as datasource for a grid (in this case for example, the first array of jagged array),and can see the values that are containd in it:
string[][] arr = new string[2][];
arr[0] = new String[] {"a","b"};
arr[1] = new String[] {"c","d"}...