using System;
internal interface IBase {
void Foo();
}
internal interface IDerived : IBase {
new void Foo();
public class Example : IDerived {
void IBase.Foo() {
void IDerived.Foo() {
public class Program
{
public static void Main()
Console.WriteLine("Hello World");