IList |
Name | Description |
---|---|
![]() | Returns the number of items in the list. |
![]() | Returns if the list is fixed-size. |
![]() | Returns if the list is read-only. |
![]() | Returns an item at specified index. |
![]() | Sets the item at the specified index to a new value. |
![]() | Sets the item at the specified index to a new value. |
Name | Description |
---|---|
![]() | Adds a new item to the list. |
![]() | Clears the contents of the list. |
![]() | Determines if the list contains a specific value. |
![]() | Copies the elements in the list to the array. |
![]() | Returns an enumerator used to iterate over the list. |
![]() | Returns the index of the value within the list. |
![]() | Inserts a value into a list at the specified index. |
![]() | Removes a value from the list. |
![]() | Removes a value from the list at the specified index. |
This interface should be implemented in classes that provide a list style functionality.