vb.net: multiple inheritance in an interface
问题 I'm facing a problem regarding multiple inheritance in VB.net: As far as I know VB.net does not support multiple inheritance in general but you can reach a kind of multiple inheritance by working with interfaces (using “Implements” instead of “Inherits”): Public Class ClassName Implements BaseInterface1, BaseInterface2 End Class That works fine for classes but I’d like to have an interface inheriting some base interfaces. Something like that: Public Interface InterfaceName Implements