8 lines
147 B
C#
8 lines
147 B
C#
|
namespace TestInterfaceImplementation
|
||
|
{
|
||
|
public interface Interface5 : Interface4
|
||
|
{
|
||
|
int Method();
|
||
|
new int Method2();
|
||
|
}
|
||
|
}
|