If there are only the two columns and you want the data in one to point to the data in the other column, then I'd think a Dictionary(Of T, T) would be the best data storage for what you need. In a Dictionary, the items are set up as Key-Value pairs that you can easily get the data you need using the Key to retrieve the associated value:
Code:
myValue = myDictionary(myKey)