In the following code I generate values for x and y, how do I extract the x and y value say for index 3 I am relatively new using List of
Dim pts As New List(Of PointF)
For x = 0 To 10
pts.Add(New Point(x, CInt(x ^ 2)))
Next
Thanks