0
public interface inf1 { void show(); } 

public interface inf2 { void show(); }

public class A:inf1:inf2 {

}

how to slove this please help me

Gonzalo.-
  • 12,512
  • 5
  • 50
  • 82

1 Answers1

0
public interface inf1 { void show(); } 

public interface inf2 { void show(); }

public class A:inf1,inf2 {
   public void inf1.show(){}
   public void inf2.show(){}
}

This is explicit implementation of interface.

A.T.
  • 24,694
  • 8
  • 47
  • 65