blob: c212fe909306282ac359734c2ffff973922a1200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS1644: Feature `nameof operator' cannot be used because it is not part of the C# 5.0 language specification
// Line: 10
// Compiler options: -langversion:5
class C
{
static void Main ()
{
var n = nameof (Main);
}
}
|