internal interface IFoo
{
void foo();
}
public class Foo : IFoo
{
internal void foo()
{
throw new NotImplementedException();
}
}
Program.cs(8,14): error CS0737: 'Foo' does not implement interface member 'IFoo.foo()'. 'Foo.foo()' cannot implement an interface member because it is not public.