IList Methods
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() | Add(Object) | Adds an item to the IList. |
![]() | Clear() | Removes all items from the IList. |
![]() | Contains(Object) | Determines whether the IList contains a specific value. |
![]() | CopyTo(Array, Int32) | Copies the elements of the ICollection to an Array, starting at a particular Array index.(Inherited from ICollection.) |
![]() | GetEnumerator() | Returns an enumerator that iterates through a collection.(Inherited from IEnumerable.) |
![]() | IndexOf(Object) | Determines the index of a specific item in the IList. |
![]() | Insert(Int32, Object) | Inserts an item to the IList at the specified index. |
![]() | Remove(Object) | Removes the first occurrence of a specific object from the IList. |
![]() | RemoveAt(Int32) | Removes the IList item at the specified index. |
| Name | Description | |
|---|---|---|
![]() | AsParallel() | Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.) |
![]() | AsQueryable() | Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.) |
![]() | Cast(Of TResult)() | Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.) |
![]() | OfType(Of TResult)() | Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.) |
