B4J Question Custom type with List

Josias

Member
Licensed User
Longtime User
I need to have a custom type that includes a list. The following fails, complaining about a null pointer. What am I doing wrong?
Type xxxx( Name As String, Count As Int, myList As List )
Dim abc As xxxx
abc.myList.initialize <---- fails
 
Top