stickleprojects Level: Moderator

 Registered: 09-09-2002 Posts: 891
|
Re: Class with an array of another class in it
Hi,
Have you looked at the help on the Array class? Or the Systems.Collection namespace, or even the System.Collections.Generic (2005)?
You need to state the complete path for your type/class rather than the default.
Example (er... translated from c#)
begin class myclass
private myarr as myclass.mychildclass(5)
begin class mychildclass
end class
end class
Hope this helps,
Kieron
____________________________
Build it better, faster, quicker, easier.. then fix it (non-offical MS mission statement)
|