> 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/oop/inheritancenestedclass-s.md).

# «InheritanceNestedClass» (Решение)

## Ответ

```
Foo.Quux()
```

## Объяснение

Класс `Bar.Quux` имеет область видимости `private` и не может быть использован из дочернего класса. Поэтому при вызове метода `Quux` из класса `Baz` будет использован класс `Foo.Quux`.

[Задача](/problembookdotnet/ru/oop/inheritancenestedclass-p.md)
