Creating an array of class
Hi,
How can I create an array of a class that I have declared?
I have this class named parts
with properties of frame, engine and date, and i want to know how could I store them in an array ..
thanks
Related Article: Destroy instance of vb.net class
is a VB.NET discussion thread by olegb that has 1 reply, was last updated 2 years ago and has been tagged with the keywords: class, destroy, instance, vb.net.
jbutardo
Junior Poster in Training
74 posts since Jan 2012
Reputation Points: 8
Solved Threads: 2
Skill Endorsements: 0
dim myarray(20) as parts
This will create an array where each item can contain a reference to a part, however, the objects themselves do not exist until they are instantiated (with New). In order to actually create an array of part objects you have to do
for i as integer = 0 to 20
myarray(i) = New parts
next
Reverend Jim
Carpe per diem
3,623 posts since Aug 2010
Reputation Points: 563
Solved Threads: 452
Skill Endorsements: 32
Question Answered as of 1 Year Ago by
Reverend Jim