Hi - I am new to VB.NET and I have a question I hope someone can assist with.
In PHP the code below is valid. Is there a similar array type in VB?
$price['Gasket'] = 15.29;
$price['Wheel'] = 75.25;
$price['Tire'] = 50.00;
echo $price[Tire];
Open in new window