Two properties : Property « Class Module « VB.Net Tutorial






Imports System
Imports System.Collections

Class EmployeeList
  Private mEmployees As Hashtable

  Private mLevels As Hashtable

  Public Sub New()
    mEmployees = New Hashtable()
    mLevels = New Hashtable()
  End Sub

  Public Default Property Employee(ByVal ID As Integer) As Employee
    Get
      Dim theObject As Object
      theObject = mEmployees(ID)
      Return CType(theObject, Employee)
    End Get

    Set(ByVal Value As Employee)
      mEmployees(ID) = Value
    End Set
  End Property

  Public Property Level(ByVal country As String) As String
    Get
      Dim theObject As Object
      theObject = mLevels(country)
      Return CType(theObject, String)
    End Get

    Set(ByVal Value As String)
      mLevels(country) = Value
    End Set
  End Property
End Class


Class Employee
  Private mName As String
  Private mWage As Double
  Private mID As Integer

  Public Sub New(ByVal name As String, ByVal wage As Double,ByVal id As Integer)
    mName = name
    mWage = wage
    mID = id
  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 Wage() As Double
    Get
      Return mWage
    End Get
  End Property

  Public ReadOnly Property ID() As Integer
    Get
      Return mID
    End Get
  End Property

  Public Sub PayRise(ByVal amount As Double)
    mWage += amount
  End Sub

  Public Overrides Function ToString() As String
    Return "[" & mID & "] " & mName & " " & mWage
  End Function
End Class
Module DefaultProperty
  Sub Main()
    Dim employer As New EmployeeList()

    employer(1) = New Employee("A", 25, 1)
    employer(2) = New Employee("J", 35, 2)
    employer(3) = New Employee("T", 17, 3)
    employer(4) = New Employee("E", 16, 4)

    employer.Level("AA") = "A"
    employer.Level("BB") = "B"
    employer.Level("CC") = "C"
    employer.Level("DD") = "D"
    employer.Level("EE") = "E"
    employer.Level("FF") = "F"

    Dim country As String
    country = "AA"

    Dim city As String
    city = employer.Level(country)

    If city Is Nothing Then
      Console.WriteLine("No office in {0}", country)
    Else
      Console.WriteLine("Level in {0}: {1}", country, city)
    End If
  End Sub
End Module
Level in AA: A








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