1 2 3 4 5 6 7 8 9 10 11
// CS0540: `B.A.B()': containing type does not implement interface `A' // Line: interface A { } class B { void A.B () {} static void Main () {} }