如何:确定与枚举值关联的字符串
更新:2007 年 11 月
GetValues 和 GetNames 方法可用于确定与枚举成员关联的字符串和值。
确定与枚举关联的字符串
使用 GetNames 方法检索与枚举成员关联的字符串。此示例声明了枚举 flavorEnum,然后使用 GetNames 方法显示和每个成员关联的字符串。
Public Enum flavorEnum salty sweet sour bitter End Enum Private Sub TestMethod() MsgBox("The strings in the flavorEnum are:") Dim i As String For Each i In [Enum].GetNames(GetType(flavorEnum)) MsgBox(i) Next End Sub