constructor inheriting : Constructor « Class Module « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Class Module » Constructor 
6.30.13.constructor inheriting
Public Class Address
  Private MyState as String = "DEFAULT"

  Sub New()
    MyBase.New()
    Console.WriteLine("Address Created")
  End Sub

  Public Property State As String
    Get
      Return MyState
    End Get

    Set(Value As String)
      MyState = Value
    End Set
  End Property
End Class

Public Class MyAddress
  Inherits Address

  Private MyAddress as String

  Sub New()
    MyBase.New()
    Console.WriteLine("MyAddress Created")
  End Sub

  Public Property Address as String
    Get
      Return MyAddress
    End Get

    Set(Value As String)
      MyAddress = Value
    End Set
  End Property
End Class

Module Test
  Sub Main()
    Dim SL As New MyAddress() 
    SL.State = "CANADA"
    SL.Address = "123"
  End Sub
End Module
Address Created
MyAddress Created
6.30.Constructor
6.30.1.Class with constructor
6.30.2.Empty constructor
6.30.3.Default constructor
6.30.4.Copy constructor
6.30.5.Constructors in three levels
6.30.6.Overloaded constructors
6.30.7.Call member method in constructor
6.30.8.Private Constructor
6.30.9.Inheriting Constructors
6.30.10.Shared Constructor
6.30.11.Constructor with Optional parameter
6.30.12.Constructor Chain
6.30.13.constructor inheriting
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.