' Visual Basic 2008 9.0 .NET Examples - Properties - Object Oriented Programming : Namespace Example2 Class Book Public Title As String End Class Module Client Sub Main() Dim book1 As Book = New Book book1.Title = "Some Title" Console.Write(book1.Title) ' Console.ReadLine() End Sub End Module End Namespace ' Visit www.studyvb.com for more examples. Copyright 2003-2008 De Wolf.