IList<int> vs List<int>

Viewed 35328

Can you help me understand the practical differences between these two;

IList<int> myList = new List<int>();

List<int> myList = new List<int>();
7 Answers
Related