RE: How would you implement inheritance using VB.NET ?...
Make a class and also make one more class and 2nd class will implements the first class. It is very simple concepts of inheritance. It has also many other logics.
RE: How would you implement inheritance using VB.NET ?...
Using VB.NET we can create a class that provides basic functionality so that other classes can inherit its members. VB.NET provides the 'Inherits' keyword to implement inheritance. By using the keyword 'Inherits' we can inherit the characteristics of a class into another class.