0 votes
in C Sharp by
List out the differences between Array and ArrayList in C#?

1 Answer

0 votes
by
Array stores the values or elements of same data type but arraylist stores values of different datatypes.

Arrays will use the fixed length but arraylist does not uses fixed length like array.
...