Click or drag to resize

ParameterizedEvaluator1TParameter1, TResultWrap Method

Creates a parameterized evaluator that will wrap another evaluator. All parameters will be ignored, and the wrapped evaluator result will be returned.

Namespace:  AGI.Foundation.Infrastructure
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static ParameterizedEvaluator1<TParameter1, TResult> Wrap(
	IEvaluator<TResult> evaluator
)

Parameters

evaluator
Type: AGI.FoundationIEvaluatorTResult
The evaluator to wrap.

Return Value

Type: ParameterizedEvaluator1TParameter1, TResult
A new parameterized evaluator that will ignore all parameters and evaluate the wrapped evaluator.
See Also