begin()

IEnumerable::begin() method

Gets iterator pointing to the first element (if any) of the collection. This iterator can’t be used to change a referenced object because GetEnumerator() returns a copy-object of T.

iterator System::Collections::Generic::IEnumerable<T>::begin()

Return Value

An iterator pointing to the first element (if any) of the collection

IEnumerable::begin() const method

Gets iterator pointing to the first element (if any) of the const-qualified instance of the collection.

const_iterator System::Collections::Generic::IEnumerable<T>::begin() const

Return Value

An iterator pointing to the first element (if any) of the const-qualified instance of the collection

See Also