Click or drag to resize
EnumerableExDeferTResult Method
Creates an enumerable sequence based on an enumerable factory function.

Namespace: System.Linq
Assembly: System.Interactive (in System.Interactive.dll) Version: 1.2.0.0
Syntax
C#
public static IEnumerable<TResult> Defer<TResult>(
	Func<IEnumerable<TResult>> enumerableFactory
)

Parameters

enumerableFactory
Type: SystemFuncIEnumerableTResult
Enumerable factory function.

Type Parameters

TResult
Result sequence element type.

Return Value

Type: IEnumerableTResult
Sequence that will invoke the enumerable factory upon a call to GetEnumerator.
See Also