8 lines
147 B
C#
Raw Normal View History

namespace TestInterfaceImplementation
{
public interface Interface5 : Interface4
{
int Method();
new int Method2();
}
}