1 // CS0535: `B' does not implement interface member `ITest2.GetName(string)'
4 public interface ITest1
{
5 void GetName(string id
);
8 public interface ITest2
{
9 void GetName(string id
);
12 public class A
: ITest1
{
13 void ITest1
.GetName(string id
) {
17 public class B
: A
, ITest2
{