15 lines
307 B
C#
15 lines
307 B
C#
namespace TestInterfaceImplementation
|
|
{
|
|
public class Class5 : Interface6
|
|
{
|
|
public int Method<TTT>()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public int Method()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |