Open sandboxFocus

Method ProceedEnumerable

ProceedEnumerable()

Synonym to Proceed(), but the return type is exposed as a IEnumerable<dynamic?>.

Declaration
[CompileTime(true, null)]
public static IEnumerable<dynamic?> ProceedEnumerable()
Returns
Type Description
IEnumerable<dynamic>
Remarks

Use this method in specialized iterator templates (e.g., OverrideEnumerableMethod() or OverrideEnumerableProperty) to enable yield usage in your template code and avoid automatic buffering by the default template.

See Also