Skip to Content
Visual Basic 2015 Unleashed
book

Visual Basic 2015 Unleashed

by Alessandro Del Sole
July 2015
Intermediate to advanced
1300 pages
87h 27m
English
Sams
Content preview from Visual Basic 2015 Unleashed

Instantiating Objects with Constructors

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, ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Visual Basic 2015

Beginning Visual Basic 2015

Bryan Newsome

Publisher Resources

ISBN: 9780134196664Purchase book