I have a List of String:
Dim values as List(Of String) = {{1 ; 4} , {2 ; 8} , {3 ; 16}}
This list was created by a previous existing code (so I didn't define it as a list of strings by myself).
So when I type
MsgBox(values(0))
'Output: 1 ; 4
this shows up.
Those values correspond to xy-Values, so what I want to have is something like this
MsgBox(xVal(0))
'Output: 1
MsgBox(yVal(2))
'Output: 16
I have been looking for a solution for quite a while now, scince VB.net is quite new for me. The main problem here is the conversion between the types. Would appreciate any kind of help, thank you.
