New to VB.net
".NET doesn't support multiple inheritance. But it does support mulitple inheritance with interfaces"
what does this mean..can someone give any simple example for Mulitple inheritance with interfaces please....
thank you
nath
Printable View
New to VB.net
".NET doesn't support multiple inheritance. But it does support mulitple inheritance with interfaces"
what does this mean..can someone give any simple example for Mulitple inheritance with interfaces please....
thank you
nath
That means that while you can only inherit from one base class at a time you can implement more than one interface.
Public Class OneInherit
Inherits MyBaseclass
Public Class MultipleInterfaces
Implements IInterface1, IInterface2, IInterface3