Which interface does AddRange() belong to in List<T>?

56 views Asked by At

List<T> implements the following interfaces:

IList<T>
ICollection<T>
IList
ICollection
IReadOnlyList<T>
IReadOnlyCollection<T>
IEnumerable<T>
IEnumerable

None of them has AddRange().

Which interface does AddRange() belong to in List<T>?

0

There are 0 answers