Created
April 17, 2012 17:57
-
-
Save CalvinRodo/2407834 to your computer and use it in GitHub Desktop.
State Selector
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim states as Dictionary(Of String, String)() From { {"CA", "California"} } | |
'to get the name just call where stateCode is the inputted string from the user. | |
Dim name as String = states(_stateCode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment