ArrayList in C# - Count & Capacity Property
Jan 9, 2023 · 2 min read · ArrayList : In C#, ArrayList is a non-generic collection that has a dynamic size which means the size is not fixed. The initial capacity of an ArrayList is 4 when we add the first element into it. The capacity will get doubled when we add more elemen...
Join discussion