System::Collections::IList class
Contents
[
Hide
]IList class
IList Represents a non-generic collection of objects that can be individually accessed by index.
class IList : public virtual System::Collections::ICollection
Methods
| Method | Description |
|---|---|
| virtual Add(SharedPtr<System::Object>) | Adds item to the end of list. |
| virtual Clear() | Removes all items from the list. |
| virtual Contains(SharedPtr<System::Object>) const | Checks if the item is in the list. |
| virtual get_IsFixedSize() const | Gets a value indicating whether the list has a fixed size. |
| virtual idx_get(int, int) const | RTTI information. |
| virtual IndexOf(SharedPtr<System::Object>) const | Gets the first index of the specified item. |
| virtual Insert(int, SharedPtr<System::Object>) | Inserts the item to the list at the specified index. |
| virtual Remove(SharedPtr<System::Object>) | Removes the first instance of the specified item from the list. |
| virtual RemoveAt(int) | Removes the item from the list at the specified index. |
See Also
- Class ICollection
- Namespace System::Collections
- Library Aspose.TeX for C++