[]
Projects each element of a view into a new form.
public View<TResult> Select<TResult>(Expression<Func<T, TResult>> selector)
| Type | Name | Description |
|---|---|---|
| Expression<Func<T, TResult>> | selector | A transform function to apply to each element. |
| Type | Description |
|---|---|
| View<TResult> | A view whose elements are the result of invoking the transform function on each element of this view. |
| Name | Description |
|---|---|
| TResult | The type of the value returned by selector. |