Link to home
Start Free TrialLog in
Avatar of onamelessone
onamelessone

asked on

How can I create and use pair lists in VB.

How can I create paired lists in VB?
for example
myList menu
{
"cereal", "$4.95",
"soup", "$2.50",
"soda", "$0.99"
}
so that:
menu("cereal") would return "$4.95"
ASKER CERTIFIED SOLUTION
Avatar of PuckJunkie
PuckJunkie

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of onamelessone
onamelessone

ASKER

Thanks a lot.  That's exactly what I needed.