July 2015
Intermediate to advanced
1300 pages
87h 27m
English
A constructor is a method you invoke to create a new instance of a class that is represented by the New keyword in Visual Basic. For instance, if you have the following Contact class,
Public Class Contact Public Property FirstName As String Public Property LastName As String Public Property Email As String Public Property Address As String Public Sub New() End SubEnd Class
you can then create a new instance of the Contact class as follows:
'First syntaxDim aContact As ContactaContact = New Contact'Second syntaxDim aContact As New Contact'Third syntaxDim aContact As Contact = New Contact
All the three preceding syntaxes are enabled, ...