Login
Remember
Register
Ask a Question
List out the differences between Array and ArrayList in C#?
0
votes
asked
Oct 18, 2019
in
C Sharp
by
Robin
List out the differences between Array and ArrayList in C#?
array-in-c#
arraylist-in-c#
array-in-c-sharp
arraylist-in-c-sharp
c#-arraylist
c#-array
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 18, 2019
by
rajeshsharma
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.
...