Skip to content

Files

Latest commit

297fa7a · Sep 3, 2023

History

History

ChunkedList

Enabling List to store large amounts of elements

List<T> is one of the most versatile collection types in .NET. As it is meant for general-purpose use, it is not optimized for any specific use case. So, if we look closely enough, we will find scenarios where it falls short. One of these scenarios is when you have lots of data. This article will look at precisely this.

Found here