Hello
you can try the following
Private
Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
Dim apf(10) As String
ListBox1.Items.CopyTo(apf, 0)
Dim ap() As Integer = Array.ConvertAll(apf, New Converter(Of String, Integer)(AddressOf PointFToPoint))
Console.WriteLine()
Catch ex As Exception
End Try
End Sub
Public
Shared Function PointFToPoint(ByVal pf As String) As Integer
Return CInt(pf)
End Function
And now you can do your all rest of the operations