9 lines
153 B
C#
Raw Normal View History

namespace TestInterfaceImplementation
{
public interface Interface4
{
int Method();
int Method2();
int Method3();
}
}