我正在使用旧的 Web 应用程序(vb.net 2003),并且正在尝试使用自定义类的通用列表。
我意识到 System.Collections.Generic 是根据链接在.Net 2中引入的
有没有其他选择?例如一个类数组?
假设我有以下类定义:
Public Class Box
Public x As Integer
Public y As Integer
End Class
和一个类框数组:
Dim BoxList() As Box
BoxList(0).x = 1
BoxList(0).y = 1
BoxList(1).x = 2
BoxList(2).y = 2
但是当错误时我得到一个BoxList(0).x = 1
错误:Object reference not set to an instance of an object
我只是在这里猜测。