MyMediaLite
3.07
|
Proxy class that allows access to selected elements of an underlying list data structure. More...
Public Member Functions | |
void | Add (T item) |
void | Clear () |
bool | Contains (T item) |
void | CopyTo (T[] array, int i) |
int | IndexOf (T item) |
void | Insert (int index, T item) |
ListProxy (IList< T > list, IList< int > indices) | |
Create a new ListProxy object. | |
bool | Remove (T item) |
void | RemoveAt (int index) |
Properties | |
int | Count [get] |
bool | IsFixedSize [get] |
bool | IsReadOnly [get] |
T | this[int index] [get, set] |
Proxy class that allows access to selected elements of an underlying list data structure.
ListProxy | ( | IList< T > | list, |
IList< int > | indices | ||
) | [inline] |
Create a new ListProxy object.
list | the list to proxy |
indices | an index list pointing to entries in the list |