I am looking for the VB.NET equivalent of
var strings = new string[] {"abc", "def", "ghi"};
|
|
|
|
|
|
|
Dim strings() As String = {"abc", "def", "ghi"} |
||
|
|
|
|
|
||
|
|
|
Not a VB guy. But maybe something like this?
(About 25 seconds late...) Tip: http://www.developerfusion.com/tools/convert/csharp-to-vb/ |
|||
|
|
|
|
Dim strings As String() = {"abc", "def", "ghi"} |
||
|
|
|
|
There are plenty of correct answers to this already now, but here's a "teach a guy to fish" version. First create a tiny console app in C#:
Compile it, keeping debug information:
Run Reflector on it, and open up the Main method - then decompile to VB. You end up with:
So we got to the same answer, but without actually knowing VB. That won't always work, and there are plenty of other conversion tools out there, but it's a good start. Definitely worth trying as a first port of call. |
||
|
|