How is List <T> internally displayed?
Is it internally processed as an array, or is it processed by the CLR as a completely different type?
I am trying to implement integer values in a list.
List<int> lst = new List<int>();
lst.Add(3);
lst.Add(4);
against.
I create an array of integers
int[] arr = new int[2];
arr[0] = 3;
arr[1] = 4;
The array returns the best time intervals. So why do people prefer List <>.
+5