IList<T>
IList
IList
Description
The IList
Declaration
template<typename T>
interface IList : public ICollection<T>Header
#include <Generic\Interfaces\IList.mqh>Inheritance Hierarchy
IList
Direct descendants
Class Methods
| Method | Description |
|---|---|
| TryGetValue | Gets a list element at the specified index |
| TrySetValue | Changes a value from the list at the specified index |
| Insert | Inserts an element into the list at the specified index |
| IndexOf | Searches for the first occurrence of a value in a list |
| LastIndexOf | Searches for the last occurrence of a value in a list |
| RemoveAt | Removes a list element at the specified index |
Last updated on