public class Program {
public static void Main() {
byte i = 2;
long j = 3;
// 't1' references an 'integer' unidimensional array
// that contains 6 items.
int [] t1 = new int [6];
// 't2' references a 'double' multi-dimensional array of rank 2
// that contains 12 items (j=3 and 3x4=12).
double [,] t2 = new double [j,4];
// 't3' references an 'object' multi-dimensional array of rank 3
// that contains 30 items (j=3 and i=2 and 3x5x2=30).
object [,,] t3 = new object [j,5,i];
}
}