Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Less verbose
Message
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Titre:
Versions des environnements
Environment:
VB 9.0
OS:
Vista
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01317089
Message ID:
01317108
Vues:
10
>>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" }
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform