Navigation: Code Documentation > RSCommon > RSGenerics.Collections > Classes > TRSEnumerable<T>
TRSEnumerable<T> Methods
Name
Description
DoGetEnumerator
Returns the container's enumerator.
Implement the DoGetEnumerator protected method in order to return the container's enumerator.
GetEnumerator
Returns an enumerator for the container.
Call GetEnumerator to obtain an enumerator for the container, as returned by the RSGenerics.Collections.TRSEnumerable<T>.DoGetEnumerator protected method.
ToArray
Returns the content of the enumerable as an array.
ToArrayImpl(Integer)
Converts the enumerable container's items into an equivalent TArray of items.
Top