Files
linux-packaging-mono/mcs/errors/cs0120-3.cs

15 lines
212 B
C#
Raw Normal View History

// CS0120: An object reference is required to access non-static member `X.method()'
// Line: 11
class X {
void method ()
{
}
public static int Main (string [] args){
X.method ();
return 1;
}
}