System.Collections.Generic
Interface IList<T>

All Superinterfaces:
ICollection<T>, IEnumerable<T>, java.lang.Iterable<T>
All Known Implementing Classes:
TouchCollection

public interface IList<T>
extends ICollection<T>, IEnumerable<T>

Represents a collection of objects that can be individually accessed by index.

Author:
Halofreak1990

Method Summary
 T get(int index)
           
 int IndexOf(T item)
           
 void Insert(int index, T item)
           
 void RemoveAt(int index)
           
 void set(int index, T item)
           
 
Methods inherited from interface System.Collections.Generic.ICollection
Add, Clear, Contains, CopyTo, Count, IsReadOnly, Remove
 
Methods inherited from interface System.Collections.Generic.IEnumerable
GetEnumerator
 
Methods inherited from interface java.lang.Iterable
iterator
 

Method Detail

IndexOf

int IndexOf(T item)

Insert

void Insert(int index,
            T item)

RemoveAt

void RemoveAt(int index)

get

T get(int index)

set

void set(int index,
         T item)