Click or drag to resize

BcfReadOnlyArrayListExtensionsSelectTSource, TResult Method

Projects each element of a sequence into a new form.

Namespace:  System.Linq
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntax
public static IEnumerable<TResult> Select<TSource, TResult>(
	this BcfReadOnlyArrayList<TSource> source,
	Func<TSource, TResult> selector
)

Parameters

source
Type: CalculationWorks.BusinessModelBcfReadOnlyArrayListTSource
The source.
selector
Type: SystemFuncTSource, TResult
The selector.

Type Parameters

TSource
The type of the elements of source.
TResult
The type of the result element.

Return Value

Type: IEnumerableTResult
An IEnumerable<T> whose elements are the result of invoking the transform function on each element of source.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type BcfReadOnlyArrayListTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also