Hey,

In this case, you are going to want to use a Generic List of Type CustomObject, i.e.

Code:
        Dim objects As New List(Of CustomObject)
        objects.Add(New CustomObject("test", "test1", "test2", True, 1))
Hope that helps!!

Gary