0
what is used the most in general ? lists, stacks, queues or arrays?
3 Respostas
+ 1
Just depends what your needs are. Some data structures are better than others in certain ways. Each data structure has its own pros and cons. Finally for your question based on my experience i seem to use ArrayLists, LinkedLists more.
0
As for web application with LINQ usage it's usual to use arrays, dictionaries and lists.
And if I remember right arrayLists do not use generics what makes them slower than arrays or lists (boxing and unboxing everytime).
0
It depends on situation but generally we always use stack and arrays only.