带有文本作为索引的列表或数组?

时间:2011-01-24 23:08:41

标签: vb.net data-structures

使用vb.net,是否可以有一个值列表,例如:

Green
Black
Blue

并将索引作为文本值,例如

Table
Desk
Chair

类似这样的事情

ListColors("Chair")="Green"
ListColors("Desk")="Blue"
ListColors("Table")="Black"

1 个答案:

答案 0 :(得分:6)

使用Dictionary(Of String, String)对象:http://msdn.microsoft.com/en-us/library/xfhwa508.aspx