
216 Chapter 5 • .NET Programming Fundamentals
Object Oriented Programming
; In Visual Basic .NET, everything is an object.
; Visual Basic .NET now supports true inheritance and polymorphism to
become a more true object oriented programming language.
; You are no longer limited to one class per class module. In fact, your
classes don’t even have to be created in a class module.
; The Set keyword is no longer used when working with objects.This is
because default properties without parameters are no longer used
negating the need for the Set keyword.
; Constructors allow you to initialize your object when the object is
created.You can even pass in parameter ...