Por si le sirve a alguno, esta es la solución a mi problema en lugar del array:
Código Visual Basic:
Ver originalDim Cl_Nombres As New Collection
For Each Dt_Row As DataRow In dst.Tables("inscritos").Rows
Dim Dt_Nombre As String = Dt_Row.Item("nombre").ToString
Cl_Nombres.Add(CObj(Dt_Nombre))
Next