I am looking for the VB.NET equivalent of
var strings = new string[] {\"abc\", \"def\", \"ghi\"};
Not a VB guy. But maybe something like this?
Dim strings = New String() {"abc", "def", "ghi"}
(About 25 seconds late...)
Tip: http://www.developerfusion.com/tools/convert/csharp-to-vb/