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: cfeba72438f92c727d3c0f0945de8dc64b829d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs0234-3.cs: The type or namespace name `Type' does not exist in the namespace `MonoTests.System'. Are you missing an assembly reference?
// Line: 12

using System;

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