Click or drag to resize

RhinoListTConvertAllTOutput Method

Aggregates all results of a conversion function over this table into a new list.

Namespace:  Rhino.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public RhinoList<TOutput> ConvertAll<TOutput>(
	Converter<T, TOutput> converter
)

Parameters

converter
Type: SystemConverterT, TOutput
A conversion function that can transform from T to TOutput.

Type Parameters

TOutput
The type returned by the function.

Return Value

Type: RhinoListTOutput
The new list.
See Also