我的项目经理指控我从我们的解决方案中删除所有“Option Infer On”指令(在他看来,为了没有未定义的类型)。
Dim enums = [Enum].GetValues(enumType) ' here I will use "As Array"
For Each item In enums ' <================== WHAT TYPE TO USE HERE?
Dim ienum As [Enum] = CType(item, [Enum])
Dim name As String
Dim caption As String
name = ienum.GetPropertyName
caption = ienum.GetStringValue
myDict.Add(caption, name)
Next item
答案 0 :(得分:1)
GetValues的返回类型是一个对象数组。因此For Each循环中“item”变量的类型将是Object。
希望有所帮助。
答案 1 :(得分:1)