Is it not possible to use an ArrayList inside of a Structure or a Class?
I keep getting 'Object reference not set to instance of an object'
I am using New.
i.e.
Stucture ABC
Dim al as ArrayList
End Structure
Private Sub X()
Dim Struct1 as New ABC
Struct1.al.Add("anything")
End Sub


Reply With Quote