投稿者 魔界の仮面弁士  (社会人) 投稿日時 2021/10/6 17:52:05
> 配列(1) = 100
> 配列(2) = 200
> 配列(3) = 100
> 配列(4) = 200

配列(0) は?

Imports System.IO
Module Module1
    Sub Main()
        Dim result As New List(Of String)() From {"配列(0)の値"}
        For Each cols In File.ReadLines("D:\example.txt").Select(Function(s) s.Split(vbTab(0)))
            If cols.Length = 4 Then
                result.Add(cols(2))
                result.Add(cols(3))
            End If
        Next
        Dim 配列() As String = result.ToArray()

    End Sub
End Module