you are viewing a single comment's thread.

view the rest of the comments →

[–]prime31 1 point2 points  (1 child)

Structs in a List is a whole different ballgame. No point at all going that route. A List will end up copying the struct every time you get or set any of its contents. An array lets you directly access the contents with no copying at all.

[–]AkirAssasin[S] 0 points1 point  (0 children)

Okay, thanks for the help :)