List (String) lub Array lub ArrayList

Mam nadzieję, że proste pytanie do większości programistów z pewnym doświadczeniem.

Jaki typ danych pozwala mi to zrobić?

Dim lstOfStrings as *IDK*

Dim String0 As String = "some value"
Dim String1 As String = "some value"
Dim String2 As String = "some value"
Dim String3 As String = "some value"
Dim String4 As String = "some value"
Dim String5 As String = "some value"


lstOfStrings.add(String0, String1, String2, String3)

Uzyskałbym dostęp do tych w ten sposób

Dim s1 = lstOfStrings(0)
Dim s2 = lstOfStrings(1) 
Dim s3 = lstOfStrings(2) 
Dim s4 = lstOfStrings(3)

jeśli używam List (String), jestem w stanie .dodać tylko jedną rzecz do listy (w tym samym czasie), aw mojej funkcji chcę mieć możliwość przechowywania kilku wartości (na raz).

Rozwiązanie:

Private Function Foo() As List(Of String)


    Dim temp1 As String
    Dim temp2 As String 
    Dim temp3 As String 

    Dim temp4 As String 
    Dim temp5 As String 
    Dim temp6 As String 

    Dim inputs() As String = {temp1, temp2, temp3, temp4, temp5, temp6}

    Dim lstWriteBits As List(Of String) = New List(Of String)(inputs)


    Return lstWriteBits
End Function

questionAnswers(6)

yourAnswerToTheQuestion