 | 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
Syntaxpublic static IEnumerable<TResult> Select<TSource, TResult>(
this BcfReadOnlyArrayList<TSource> source,
Func<TSource, TResult> selector
)
<ExtensionAttribute>
Public Shared Function Select(Of TSource, TResult) (
source As BcfReadOnlyArrayList(Of TSource),
selector As Func(Of TSource, TResult)
) As IEnumerable(Of TResult)
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:
IEnumerableTResultAn 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