This should work according to another stack overflow post but its not:
Dim arrWsNames As String() = {\"Value1\", \"Value2\"}
Can anyone let
Dim myStringArray() As String *code* redim myStringArray(size_of_your_array)
Then you can do something static like this:
myStringArray = { item_1, item_2, ... }
Or something iterative like this:
Dim x For x = 0 To size_of_your_array myStringArray(x) = data_source(x).Name Next x