Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 1.06 KB

CS1622.md

File metadata and controls

14 lines (10 loc) · 1.06 KB

CS1622

Property Value
Id CS1622
Title Cannot return a value from an iterator. Use the yield return statement to return a value, or yield break to end the iteration.
Severity Error
Official Documentation link

Code Fixes

  • Use yield return instead of return

(Generated with DotMarkdown)