3

我有两个接口:

public interface I1
{
    A MyProperty { get; set; }
}

public interface I2 : I1
{
    new B MyProperty { get; set; }
}

在 C# 中,我可以像这样显式实现:

public class C : I1, I2
{
    public B MyProperty { get; set; }
    A I1.MyProperty { get; set; }
}

不知何故,我必须在 c++/cli 项目中使用这些接口。那么,我怎样才能在 c++/cli 中实现呢?

提前致谢。

4

1 回答 1

9

我自己解决了。它应该是:

public ref class C : I1, I2
{
public:
    virtual property B^ MyProperty
    {
        B^ get() { ... }
        void set(B^ value) { ... }
    }

 protected:
     virtual property A^ DummyProperty
     {
         A^ get() = I1::MyProperty::get { return nullptr; }
         void set(A^ value) = I1::MyProperty::set { }
     }
 }
于 2012-07-19T07:05:02.483 回答