ProceedEnumerator()
Synonym to Proceed(), but the return type is exposed as a IEnumerator<dynamic?>.
Declaration
public static IEnumerator<dynamic?> ProceedEnumerator()Returns
| Type | Description |
|---|---|
| IEnumerator<dynamic> |
Remarks
Use this method in specialized iterator templates (e.g., OverrideEnumeratorMethod()
or OverrideEnumeratorProperty) to enable yield usage in your
template code and avoid automatic buffering by the default template.