Click or drag to resize
QueryableExGenerateTState, TResult Method (TState, FuncTState, Boolean, FuncTState, TState, FuncTState, TResult)

Namespace: System.Linq
Assembly: System.Interactive.Providers (in System.Interactive.Providers.dll) Version: 1.2.0.0
Syntax
C#
public static IQueryable<TResult> Generate<TState, TResult>(
	TState initialState,
	Func<TState, bool> condition,
	Func<TState, TState> iterate,
	Func<TState, TResult> resultSelector
)

Parameters

initialState
Type: TState
condition
Type: SystemFuncTState, Boolean
iterate
Type: SystemFuncTState, TState
resultSelector
Type: SystemFuncTState, TResult

Type Parameters

TState
TResult

Return Value

Type: IQueryableTResult
See Also