20 lines
409 B
C#
Raw Normal View History

namespace TestInterfaceImplementation
{
public class Class4 : Interface5
{
public int Method()
{
throw new System.NotImplementedException();
}
public int Method2()
{
throw new System.NotImplementedException();
}
public int Method3()
{
throw new System.NotImplementedException();
}
}
}