Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Less verbose
Message
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Title:
Environment versions
Environment:
VB 9.0
OS:
Vista
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01317089
Message ID:
01317108
Views:
9
>>Is there a less verbose syntax for this?
>
>C# uses:
>
>
>string[] customerDataColumns = { "idnum", "res1_fn" };
>
>
>The converted code that (might) work is:
>
>
>Dim customerDataColumns As String() = { "idnum", "res1_fn" }
>
That is nearly it. Thanks.
Dim customerDataColumns() As String = { "idnum", "res1_fn" }
Previous
Reply
Map
View

Click here to load this message in the networking platform