在 VB6 中,我试图创建一个未定义 UDT 的数组。我自己解释。假设我有 3 个 UDT:
Public Type Country
Countryproperty1 as String
Countryproperty2 as Date
End type
Public type City
Cityproperty1 as String
Cityproperty2 as Date
End type
Public type Street
Streetproperty as string
Streetproperty as date
End type
如何声明一个可以欢迎任何这些类型的数组?
非常感谢 !皮瑞克