Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-32.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94399b230e2f345a41e450273ac0b62b41d381f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
	}
}