Home
Map
Array Memory UsageTest the memory usage of arrays and Lists. Arrays can be used in a more efficient way.
C#
This page was last reviewed on May 16, 2023.
Arrays, memory. Arrays are memory-efficient. Lists are built on top of arrays. Because of this, Lists use more memory to store the same data.
We provide a detailed comparison of array and List memory usage. A simple benchmark can be used to measure the memory of lists and arrays.
We focus on how the 2 data structures perform. The 2 code examples contrast how you can use an array with more complex logic, and a List with simpler logic.
Here The List collection is built up at runtime. It may have to allocate or change the positions in memory during garbage collection.
List Add
Note The int array is declared and created in one statement. Thus it will store all values in neighboring memory.
int Array
using System.Collections.Generic; class Program { static void Main() { // Compare time to build up a List. List<int> list = new List<int>(); for (int i = 0; i < 60000; i++) { list.Add(i); } } }
using System.Collections.Generic; class Program { static void Main() { // Compare time to allocate an array and assign to it. int[] array = new int[60000]; for (int i = 0; i < 60000; i++) { array[i] = i; } } }
List generic: 6.172 MB Integer array: 5.554 MB
List generic: 1043.4 ms Integer array: 980.2 ms
Discussion. Arrays and Lists can change performance and memory usage. The benchmarks were taken from a more complex program, but they show the pattern of arrays being more efficient.
And Arrays were about 7% faster, even when other code is involved. The usage was with a data structure that looks up items.
Notes, memory. Regarding memory usage, the int array was more compact than the List generic. There can be substantial overhead when using generics instead of arrays.
Notes, generics. You might be able to convert from generics to arrays. You could store the size of the array and use it when initializing later. That way you don't have to resize anything.
Generic
Tip These findings are only useful as a hint of how you can influence performance by changing from a List to an array.
Tip 2 This article can tell us that sometimes you can optimize by changing a List to an array.
A summary. We saw a comparison of List and array memory usage in the C# language. For speed it is sometimes worthwhile to prefer regular arrays. The performance benefit is significant.
Dot Net Perls is a collection of tested code examples. Pages are continually updated to stay current, with code correctness a top priority.
Sam Allen is passionate about computer languages. In the past, his work has been recommended by Apple and Microsoft and he has studied computers at a selective university in the United States.
No updates found for this page.
Home
Changes
© 2007-2024 Sam Allen.