What is the difference between ArrayList and List<> in C#?
ArrayList
List<>
Is it only that List<> has a type while ArrayLis
ArrayLis
ArrayList are not type safe whereas List are type safe. Simple :).
List