S
Sean
Help, trying to do a simple linked list of a simple object
to store some data. Can VB.NET not handle multiple levels
of objects? My object is just a couple strings, and
NextItem and PrevItem object variables to link the objects
together. So when I am removing one, I want to do a:
Current.PrevItem.NextItem = Current.NextItem
Current.NextItem.PrevItem = Current.PrevItem
Current = Nothing
But it won't let me a the properties beyond one layer.
to store some data. Can VB.NET not handle multiple levels
of objects? My object is just a couple strings, and
NextItem and PrevItem object variables to link the objects
together. So when I am removing one, I want to do a:
Current.PrevItem.NextItem = Current.NextItem
Current.NextItem.PrevItem = Current.PrevItem
Current = Nothing
But it won't let me a the properties beyond one layer.