22 lines
300 B
C#
22 lines
300 B
C#
|
using System;
|
||
|
|
||
|
public class Blah {
|
||
|
|
||
|
public static int Main ()
|
||
|
{
|
||
|
int [][] i = new int [2][];
|
||
|
|
||
|
int [,][] j = new int [3,6][];
|
||
|
|
||
|
Blah [] k = new Blah [2];
|
||
|
|
||
|
Blah [,][] l = new Blah [3,4][];
|
||
|
|
||
|
Uri [] uri = new Uri [4];
|
||
|
|
||
|
Console.WriteLine ("All arrays successfully created");
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
}
|