次のコードがあります。
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
If Not TextBox1.Text = "" Then
If TextBox1.Text.Contains("ping") Then
Dim PingSplit = TextBox1.Text.Split(" ")
End If
Select Case TextBox1.Text
Case "ping"
MsgBox(PingSplit(2).ToString)' debug
' If Not Regex.Match(PingSplit(2), "\A(\d{1,2}/(1[0-99]\d)/(2[0-55]\d)).(\d{1,2}/(1[0-99]\d)/(2[0-55]\d)).(\d{1,2}/(1[0-99]\d)/(2[0-55]\d)).(\d{1,2}/(1[0-99]\d)/(2[0-55]\d))\Z").Success Then
MsgBox("Invalid address!")
Else
MsgBox(GetPingMs(PingSplit(2)))
End If
End Select
Else
MsgBox("System: Please insert a command!")
End If
End Sub
ただし、コードを取得して textbox1 のテキストを分割し、後半を GetPingMs 関数に渡す方法がわかりません。関数が機能することはわかっていますが、データを渡す方法がわかりません。どんな助けでも大歓迎です。