interface IList<T>

in global :: System . Collections . Generic

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

  • T The type of elements in the list.

public void RemoveAt( int index )

Removes the item at the specified index.

  • index The zero-based index of the item to remove.

public T Item { get; set; }

😔 No documentation found.

public int IndexOf( T item )

😔 No documentation found.

public void Insert( int index, T item )

😔 No documentation found.