15 lines
307 B
C#
Raw Normal View History

namespace TestInterfaceImplementation
{
public class Class5 : Interface6
{
public int Method<TTT>()
{
throw new System.NotImplementedException();
}
public int Method()
{
throw new System.NotImplementedException();
}
}
}