Open sandboxFocus

Method OverrideEnumerableMethod

OverrideEnumerableMethod()

Template of the new method implementation for methods returning IEnumerable<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 IEnumerable<T>. If this template is not overridden, OverrideMethod() is used instead.

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