' Visual Basic 2008 9.0 .NET Examples - Introduction to Object Oriented Programming - Object Oriented Programming : Class Person Private m_Name As String ' (1) Public Function GetName() As String ' (2) GetName = m_Name End Function Public Sub SetName(ByVal value As String) ' (3) m_Name = value End Sub End Class ' Visit www.studyvb.com for more examples. Copyright 2003-2008 De Wolf.