Collection Classes
- slide 7 : 36
The Interface
IList<T>
IList<T>
contributes with
indexing
capabilities
The interface
ICollection<T>
Operations in the interface
IList<T>
:
Those prescribed in the superinterfaces
ICollection<T>
and
IEnumerable<T>
T
this
[int index]
int
IndexOf
(
T
element)
void
Insert
(int index,
T
element)
void
RemoveAt
(int index)