> For the complete documentation index, see [llms.txt](https://andreyakinshin.gitbook.io/problembookdotnet/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://andreyakinshin.gitbook.io/problembookdotnet/ru/linq/lifeafteryield-p.md).

# «LifeAfterYield» (Задача)

Что выведет следующий код?

```csharp
IEnumerable<string> Foo()
{
  yield return "Bar";
  Console.WriteLine("Baz");
}
void Main()
{
  foreach (var str in Foo())
    Console.Write(str);
}
```

[Решение](/problembookdotnet/ru/linq/lifeafteryield-s.md)
