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

test-296.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56018d8bab09c71e26ccbdaf82d5ba684c13340c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

public class GetElementTypeTest {
	public static int Main (string[] args) {
		GetElementTypeTest me = new GetElementTypeTest ();
		Type t = me.GetType ();
		Type elementt = t.GetElementType ();

		if (elementt != null)
			return 1;
		return 0;
	}
}