Questo snippet che può sembrare banale:
using System;
class Test
{
static void Main()
{
int[,][] a = new int[2,3][];
Console.WriteLine(a.GetType());
Console.Read();
}
}
stampa a console System.Int32[][,] - magari qualcuno di noi si aspettava System.Int32[,][] :-)