Inherit ToString method from Object : Class Inheritance « Class Module « VB.Net Tutorial






Option Strict On

Public Class EmptyClass
End Class

Public Module modMain
   Public Sub Main()
      Dim ec As New EmptyClass
      Console.WriteLine(ec.ToString()) 
   End Sub
End Module
EmptyClass








6.14.Class Inheritance
6.14.1.Simple Inheritance
6.14.2.Class implicitly Inherits Object
6.14.3.Circle class that inherits from class Point
6.14.4.Inherit ToString method from Object
6.14.5.Call base method
6.14.6.Shadows member function from base class
6.14.7.Use For Each for Class Hierarchy
6.14.8.Inherit constant from base class
6.14.9.Class inheritance and polymorphism
6.14.10.Multilevel inheritance