使用vb.net,是否可以有一个值列表,例如:
Green Black Blue
并将索引作为文本值,例如
Table Desk Chair
类似这样的事情
ListColors("Chair")="Green"
ListColors("Desk")="Blue"
ListColors("Table")="Black"
答案 0 :(得分:6)
使用Dictionary(Of String, String)
对象:http://msdn.microsoft.com/en-us/library/xfhwa508.aspx