System::Collections::IListImplValueType class
Contents
[
Hide
]IListImplValueType class
Stub that implements System::Collections::IList interface on System::Collections::Generic::List object Implementation for value types.
template<typename T>class IListImplValueType : public virtual System::Collections::IList
Methods
Method | Description |
---|---|
Add(SharedPtr<System::Object>) override | Adds element to the end of list. |
Clear() override | Deletes all elements. |
Contains(SharedPtr<System::Object>) const override | Checks if item is present in list. |
get_Count() const override | ICollection.get_Count() methods implementation Gets number of elements in collection. |
GetEnumerator() override | IEnumerable.GetEnumerator() implementation Returns an enumerator that iterates through a collection. |
idx_get(int, int) const override | Gets the element at the specified index. |
IListImplValueType(System::SharedPtr<System::Collections::Generic::IList<T>>) | Creates new object instance. |
IndexOf(System::SharedPtr<System::Object>) const override | Gets index of first appearance of item in container. |
Insert(int, System::SharedPtr<System::Object>) override | Inserts element into specified position, shifting other elements. |
Remove(SharedPtr<System::Object>) override | Removes first instance of specific item from list. |
RemoveAt(int) override | Removes item at specified position. |
See Also
- Class IList
- Namespace System::Collections
- Library Aspose.PUB for C++