Readable and Writable : Property « Class Module « VB.Net Tutorial






Imports System

Class Employee
  Private MName As String
  Private MDob As DateTime
  Private MEmailAlias As String

  Public Sub New(ByVal Name As String, ByVal Dob As DateTime)
    MName = Name
    MDob = Dob
  End Sub

  Public Property Name() As String
    Get
      Return MName
    End Get

    Set(ByVal Value As String)
      MName = Value
    End Set
  End Property

  Public ReadOnly Property Brithday() As DateTime
    Get
      Return MDob
    End Get
  End Property

  Public WriteOnly Property EmailAlias() As String
    Set(ByVal Value As String)
      MEmailAlias = Value
    End Set
  End Property

  Public ReadOnly Property EmailAddress() As String
    Get
      Return MEmailAlias & "@a.com"
    End Get
  End Property
End Class

Module ReadableAndWritable
  Sub Main()
    Dim emp As New Employee("T", New DateTime(1997, 7, 2))

    emp.Name = "T"
    Console.WriteLine("Name: {0}", emp.Name)

    Console.WriteLine("Date of birth: {0}", emp.Brithday.ToLongDateString)

    emp.EmailAlias = "AAA"

    Console.WriteLine("Email address: {0}", emp.EmailAddress)
  End Sub
End Module
Name: T
Date of birth: July 2, 1997
Email address: AAA@a.com








6.38.Property
6.38.1.Define and use a Property
6.38.2.Default Property
6.38.3.Two properties
6.38.4.Do calculation in Property getter
6.38.5.Properties with Getter and Setter
6.38.6.Shared variable and Shared Property
6.38.7.Class with a property that performs validation
6.38.8.ReadOnly property
6.38.9.MultiKey Properties
6.38.10.Overloaded Properties
6.38.11.Shared Properties
6.38.12.Single Indexed Property
6.38.13.Loop through two dimensional array with GetUpperBound and GetLowerBound
6.38.14.Use Property to set private data
6.38.15.Do data check in property set
6.38.16.Convert data type in property set
6.38.17.Throw Exception in Property setting
6.38.18.Change value in Property getter
6.38.19.Friend Property
6.38.20.Readable and Writable
6.38.21.Person with FirstName and LastName Property
6.38.22.Define a class with one property and retrieves the name and type of the property