List out the differences between Array and ArrayList in C#?
Vivek Kumar
1)Array stores the values or elements of same data type but arraylist stores values of different datatypes. 2) Arrays will use the fixed length but arraylist does not uses fixed length like array.
Array has fixed size While not in arraylist
array has fixed size but array list has no fixed size