' Visual Basic 2008 9.0 .NET Examples - Inheritance - Inherits - Object Oriented Programming : Class Teacher Inherits Person Private m_Course As String Public Property Course() As String Get Course = m_Course End Get Set(ByVal value As String) m_Course = value End Set End Property End Class ' Visit www.studyvb.com for more examples. Copyright 2003-2008 De Wolf.