// CS0176: Static member `A.Foo()' cannot be accessed with an instance reference, qualify it with a type name instead// Line: 21public class A
{public static voidFoo(){}}public class Test
{static A Prop
{get{return null;}}public static voidMain(){
Test.Prop.Foo();}}