Message 1 of 3

Not applicable
04-23-2020
02:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to create a list of an unknown quantity of (preferably) 2D Vectors (but 3D works as well)
Something along the lines below:
Dim MyList As New List (Of Vector)
MyList.Add(1, 2)
MyList.Add(3, 7)
MyList.Add(5, 10)
Logger.Info(MyList(1).X)
But this throws an error on Line 1, saying "Type 'Vector' is not defined."
Solved! Go to Solution.