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

cs0234-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62b133cae5bc805bb4cab992fb2bc93a7d400c5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// error CS0234: The type or namespace name `Type' could not be found in namespace `MonoTests.System'
// Line: 12

using System;

namespace MonoTests.System
{
	public class Test
	{
		public static void Main ()
		{
			Console.WriteLine (System.Type.GetType ("System.String"));
		}
	}
}