this is how a dictionary works:
vb Code:
Dim d As New Dictionary(Of String, Integer) d.Add("one", 1) d.Add("two", 2) d.Add("three", 3) MsgBox(d("one").ToString) 'returns "1"
|
Results 1 to 4 of 4
Threaded View
|
Click Here to Expand Forum to Full Width |