13 lines
205 B
C#
Raw Normal View History

// CS0426: The nested type `WriteLINE' does not exist in the type `System.Console'
// Line: 10
using System;
public class Test
{
public static void Main ()
{
var x = nameof (Console.WriteLINE);
}
}