使用字典而不是数组
Dim dictionary1 As New Dictionary(Of String, String)
Dim result() As String = QueryResponse.Split({vbCrLf}, StringSplitOptions.RemoveEmptyEntries)
Dim res1 As String = result(0)
Dim res2 As String = result(1)
'Split res1 and res2 into arrays using '=' as delimeter
Dim res1s() As String = Split(res1,"=")
Dim res2s() As String = Split(res2,"=")
dictionary1.Add(res1(0),res1(1))
dictionary1.Add(res2(0),res2(1))
Dim pair As KeyValuePair(Of String, String)
For Each pair In dictionary1
You can access the values here using `pair.key` and `pair.value`
'Eg Label1.Text = pair.key or Console.WriteLine(pair.value)
Next