实现具有自己的接口成员的接口的正确方法是什么?(我说得对吗?)这就是我的意思:
public Interface IFoo
{
string Forty { get; set; }
string Two { get; set; }
}
public Interface IBar
{
// other stuff...
IFoo Answer { get; set; }
}
public class Foo : IFoo
{
public string Forty { get; set; }
public string Two { get; set; }
}
public class Bar : IBar
{
// other stuff
public Foo Answer { get; set; } //why doesnt' this work?
}
我已经使用显式接口实现解决了我的问题,但我想知道是否有更好的方法?