Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Generics vs ArrayList
Message
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Title:
Generics vs ArrayList
Miscellaneous
Thread ID:
01431995
Message ID:
01431995
Views:
86
I have been using bothy generic lists and array lists, but I really don't see the difference. What is the difference between:
Customer cust = new Customer();
ArrayList customers = new ArrayList();
customers.Add(cust);
and
Customer cust = new Customer();
List<Customer> customers2 = new List<Customer>();
customers2.Add(cust);
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Next
Reply
Map
View

Click here to load this message in the networking platform