Closed Owen3H closed 10 months ago
The foreach loop here throws CS1579.
foreach
Instead, replace it with something like the following:
while (result.MoveNext()) yield return result.Current;
Fixed, thanks.
The
foreach
loop here throws CS1579.Instead, replace it with something like the following: