April 2018
Intermediate to advanced
300 pages
7h 41m
English
Lists are extensively used by .NET developers. Although it is preferable to use it in many scenarios, there are some performance limitations, too.
Using lists is mostly advisable when you want to access the item using its index. Unlike a linked list, where you have to iterate over each node using an enumerator to search for the item, with a list, we can easily access it using an index.
Here are few recommendations where lists are useful:
Read now
Unlock full access