我创建了2个类,一个Location类和一个Main类。我的Location类中有一个共享的Location数组(名为Values),因此我可以使用其值填充列表。在我的Main课程中,我正在尝试:
For Each l As Location In Location.Values
' Populate List
Next
但它说:'值'不是'System.Drawing.Point'
的成员问题是我创建了一个与System中已经存在的类冲突的类。我的问题是如何在不重命名我的类的情况下引用自己的Location类而不是内置类?感谢。
答案 0 :(得分:0)
使用完全限定的类型名称,如:
For Each l As WindowsApplication1.Location In WindowsApplication1.Location.Values
只需将WindowsApplication1
替换为根命名空间。
我的项目>申请>根名称空间