I am looking for the VB.NET equivalent of
var strings = new string[] {\"abc\", \"def\", \"ghi\"};
In newer versions of VB.NET that support type inferring, this shorter version also works:
Dim strings = {"abc", "def", "ghi"}