Mono Class Library: Overview

System.Collections.IList: Members

The members of System.Collections.IList are listed below.

Public Properties

[read-only]
IsFixedSizebool. Gets a bool value indicating whether the current instance has a fixed size.
[read-only]
IsReadOnlybool. Gets a value indicating whether the current instance is read-only.
default property
Item(int)object. Gets or sets the element at the specified index in the current instance.

Public Methods

Add(object) : int
Adds an item to the current instance.
Clear()
Removes all items from the current instance.
Contains(object) : bool
Determines whether the current instance contains a specific value.
IndexOf(object) : int
Determines the index of a specific item in the current instance.
Insert(int, object)
Inserts an item to the current instance at the specified position.
Remove(object)
Removes the first occurrence of a specified object from the current instance.
RemoveAt(int)
Removes the item at the specified index of the current instance.

Extension Methods

static
AsQueryable(this IEnumerable) : System.Linq.IQueryable
Documentation for this section has not yet been entered.
static
Cast<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
OfType<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.