Table of Contents

Method Select

Namespace
NationalInstruments.SemiconductorTestLibrary.DataAbstraction
Assembly
NationalInstruments.SemiconductorTestLibrary.Abstractions.dll

Select<TResult>(Func<T, TResult>)

Selects each element of the SiteData object to perform an operation on that element.

public SiteData<TResult> Select<TResult>(Func<T, TResult> operation)

Parameters

operation Func<T, TResult>

The operation to be performed on each element.

Returns

SiteData<TResult>

New SiteData object containing the result of the operation.

Type Parameters

TResult

The output type of the result from the operation.