What is the purpose/advantage of using yield return iterators in C#?

前端 未结 10 1831
独厮守ぢ
独厮守ぢ 2020-12-04 06:43

All of the examples I\'ve seen of using yield return x; inside a C# method could be done in the same way by just returning the whole list. In those cases, is th

10条回答
  •  伪装坚强ぢ
    2020-12-04 07:25

    The basic reason for using yield is it generates/returns a list by itself. We can use the returned list for iterating further.

提交回复
热议问题