我创建了这个类,
Interval.cls
public x as new collection
public y as new collection
public z as string
我希望遍历属性,因为我希望用户在我的子表单中选择输入 x,y,z
sub test()
dim inter as new Intervals
inter.x.add "a"
inter.x.add "a"
inter.x.add "b"
inter.x.add "b"
inter.x.add "b"
userString1 = x
userString2 = a
' 我想让它动态化,这样无论用户想要什么,我都可以提供结果。'我只是想让用户字符串与我的属性进行比较成为可能
for each i in inter
'所以我希望这个循环中的 i 是我的属性 x,y,z 所以我可以做 if 语句 if ( i = userString1) then
end if
next i
end sub
我知道我可以在课堂上做一个 tweek 以使其可迭代,我不知道该怎么做
任何帮助表示赞赏