,我有一個接口如何調用在類中實現的接口的方法?
public interface IMethod
{
String Add(string str);
Boolean Update(string str);
Boolean Delete(int id);
}
我宣佈另一個接口就像這個 已IMethod財產。
public interface IFoo
{
IMethod MethodCaller { get ; set; }
}
現在我去了我的IFoo接口在我的類之一,我想從中調用IMethods方法。
類實現
public MyClass : IFoo
{
public IMethod MethodCaller{ get ; set; }
}
我該怎麼做呢?我如何調用添加更新從MyClass的
MyClasses實現IMethod刪除方法如下:
public class foo1:IMethod
{
public String Add(string str){ return string.Empty;}
Boolean Update(string str){//defination}
Boolean Delete(int id){ //defination}
}
public class foo2:IMethod
{
public String Add(string str){ return string.Empty;}
Boolean Update(string str){//defination}
Boolean Delete(int id){ //defination}
}
?什麼是實現IMethod的類?你的MyClass只實現IFoo。 –