10 lines
122 B
C#
10 lines
122 B
C#
|
// CS0103: The name `_' does not exist in the current context
|
||
|
// Line: 8
|
||
|
|
||
|
class C
|
||
|
{
|
||
|
void Test ()
|
||
|
{
|
||
|
_.ToString ();
|
||
|
}
|
||
|
}
|