13 lines
205 B
C#
13 lines
205 B
C#
|
// 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);
|
||
|
}
|
||
|
}
|