BigListTConvertAllTDest Method (ConverterT, TDest) |
Convert the list to a new list by applying a delegate to each item in the collection. The resulting list
contains the result of applying converter to each item in the list, in
order. The current list is unchanged.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic BigList<TDest> ConvertAll<TDest>(
Converter<T, TDest> converter
)
public:
generic<typename TDest>
BigList<TDest>^ ConvertAll(
Converter<T, TDest>^ converter
)
Parameters
- converter
- Type: SystemConverterT, TDest
A delegate to the method to call, passing each item in .
Type Parameters
- TDest
- The type each item is being converted to.
Return Value
Type:
BigListTDestThe resulting BigList from applying
converter to each item in this list.
Exceptions
See Also