1 2 3 4 5 6 7 8 9 10
// CS0539: `A.B' in explicit interface declaration is not a member of interface // Line: interface A { } class X : A { void A.B () {} static void Main () {} }