a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
24 lines
278 B
C#
24 lines
278 B
C#
// CS0120: An object reference is required to access non-static member `MainClass.Test'
|
|
// Line: 20
|
|
|
|
public class Test
|
|
{
|
|
public void Foo ()
|
|
{
|
|
}
|
|
}
|
|
|
|
public class MainClass
|
|
{
|
|
public Test Test
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public static void Main (string[] args)
|
|
{
|
|
Test.Foo ();
|
|
}
|
|
}
|