0 votes
in C Sharp by
What is ArrayList?

1 Answer

0 votes
by

ArrayList is a dynamic array. You can add and remove the elements from an ArrayList at runtime. In the ArrayList, elements are not automatically sorted.

...