If you go to definition of List you would see the following:
List
public class List : IList, ICollection, IEnumer
Yes it would. IList itself implements the other two.
IList
The object browser shows you all the interfaces the class implements, whether directly (IList) or indirectly (ICollection, IEnumerable, through IList).
ICollection
IEnumerable