Home All Groups Group Topic Archive Search About
Author
20 Aug 2006 7:38 PM
Samuel Shulman
I have an array of Object type

I want to assign to each element of the array a 2D String array so I tried to assign like this:
= New String(2, 2) but the compiler assumes these are constructor parameter

How can I achieve that?

Samuel

Author
20 Aug 2006 7:49 PM
Jay B. Harlow [MVP - Outlook]
Samuel,
Include {} on the end on the string array initialization, something like:

    Dim mess(3) as Object
    mess(0) = New String(2, 2) {}
    mess(1) = New String(2, 2) {}
    mess(2) = New String(2, 2) {}
    mess(3) = New String(2, 2) {}

--
Hope this helps
Jay B. Harlow [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net


"Samuel Shulman" <samuel.shul***@ntlworld.com> wrote in message
news:ehR5EBJxGHA.4200@TK2MSFTNGP04.phx.gbl...
I have an array of Object type

I want to assign to each element of the array a 2D String array so I tried
to assign like this:
= New String(2, 2) but the compiler assumes these are constructor parameter

How can I achieve that?

Samuel
Author
20 Aug 2006 10:34 PM
Samuel Shulman
Thank you,

Samuel


Show quoteHide quote
"Jay B. Harlow [MVP - Outlook]" <Jay_Harlow_***@tsbradley.net> wrote in
message news:%23uquPHJxGHA.2352@TK2MSFTNGP06.phx.gbl...
> Samuel,
> Include {} on the end on the string array initialization, something like:
>
>    Dim mess(3) as Object
>    mess(0) = New String(2, 2) {}
>    mess(1) = New String(2, 2) {}
>    mess(2) = New String(2, 2) {}
>    mess(3) = New String(2, 2) {}
>
> --
> Hope this helps
> Jay B. Harlow [MVP - Outlook]
> .NET Application Architect, Enthusiast, & Evangelist
> T.S. Bradley - http://www.tsbradley.net
>
>
> "Samuel Shulman" <samuel.shul***@ntlworld.com> wrote in message
> news:ehR5EBJxGHA.4200@TK2MSFTNGP04.phx.gbl...
> I have an array of Object type
>
> I want to assign to each element of the array a 2D String array so I tried
> to assign like this:
> = New String(2, 2) but the compiler assumes these are constructor
> parameter
>
> How can I achieve that?
>
> Samuel
>
>