私は以下のような1つのインターフェースを持っています
public interface I1
{
public int add(int a , int b);
public int subtract (int a, int b);
}
public class Myclass : I1
{
//here I can access both the methods of interface I1
//add and subtract but i want to expose only add not subtract method
//How can I achieve this?
}
特定のメソッドのみを公開し、他のメソッドを防ぐにはどうすればよいですか。