blob: 654ee3a31d9cec19a864c40898f04cb701c7749e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS0234: 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"));
}
}
}
|