Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Class employee
  2.     ' Only code inside class employee can change the value of hireDateValue.
  3.     Private hireDateValue As Date
  4.     ' Any code that can access class employee can read property dateHired.
  5.     Public ReadOnly Property dateHired() As Date
  6.         Get
  7.             Return hireDateValue
  8.         End Get
  9.     End Property
  10. End Class