On Jul 05, 2006, at 1:17 PM, Scott Wagner wrote:
Dim s as String
dim a as array
This does not compile at all. Never has that I know of. It might be
useful but it does not currently work.
There is no type called array. Arrays are always arrays of some other
type (either intrinsic or a class).
You can't do something like
dim s(-1) as String
dim a(-1) as Array
s.append "hey there"
a.append s // or a(0) = s or any other way of putting an array in an
array directly like this
If you want to do that you can wrap an array in a class.
And make a class behave like an array.
Then you could do
dim s as myArrayWrapperClass
dim a(-1) as myArrayWrapperClass
s = new myArrayWrapperClass
a.append s
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>