Friend Property : Property « Class Module « VB.Net Tutorial






Imports System

Module Test
  Sub Main()
    Dim acct As New Account()
    Console.WriteLine(acct.AccountHolder)

    Dim cAcct As New CheckingAccount()
    Console.WriteLine(cAcct.AccountHolder)
  End Sub
End Module

Public Class CheckingAccount
  Inherits Account
  Sub New()
    MyBase.New
    Console.WriteLine(MyBase.retrieved) 
    Console.WriteLine(MyBase.AccountHolder)
  End Sub
End Class

Public Class Account
  Protected retrieved As DateTime
  Private acctHolder As String
  
  Public Sub New()
    retrieved = DateTime.Now()
    acctHolder = "DEFAULT"
  End Sub
  
  Friend Property AccountHolder As String
    Get
      Return acctHolder
    End Get
    Set(ByVal Value As String) 
      acctHolder = Value
    End Set
  End Property
End Class
DEFAULT
11/05/2007 12:22:44 PM
DEFAULT
DEFAULT








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