如何只允许类从两个接口之一继承

时间:2020-06-02 04:43:24

标签: c#-4.0

我有两个接口Interface1, Interface2。我只想MyClass从其中之一继承。

如果我定义这样的类,它将编译错误:

class MyClass : Interface1, Interface2 
{
}

谢谢!

1 个答案:

答案 0 :(得分:0)

首先,它不是继承,而是实现。

您应该写其中一个

class MyClass: Interface1
{
}