Open sandboxFocus

Method OverrideEnumeratorMethod

OverrideEnumeratorMethod()

Template of the new method implementation for methods returning IEnumerator<T>. By default, this template is used for methods using the yield statement. When UseEnumerableTemplateForAnyEnumerable is true, this template is used for all methods returning IEnumerator<T>. If this template is not overridden, OverrideMethod() is used instead.

Declaration
[Template(IsEmpty = true)]
public virtual IEnumerator<dynamic?> OverrideEnumeratorMethod()
Returns
Type Description
IEnumerator<dynamic>