I know that you can easily pass an array to a function, like the code below shows
Private Sub SomeFunction(ByVal PassedArray() As String) For i As Intege
SomeFunction({"some", "array", "member"}) ' this obviously gives a syntax error
This is a perfectly valid syntax starting with VB10 (Visual Studio 2010). See this: