8 lines
132 B
C#
Raw Normal View History

namespace TestInterfaceImplementation
{
public interface Interface6
{
int Method<T>();
int Method();
}
}