> 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/strings/nostringinterning-s.md).

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

## Ответ

Нет.

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

Документация [гласит](http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.compilationrelaxations.aspx), что в этом `NoStringInterning` лишь помечает сборку, как не требующую интернирования. Поэтому CLR только может не интернировать строки, но не обязана. Кроме того, мы всегда может заинтернировать строку через метод `String.Intern`.

[Задача](/problembookdotnet/ru/strings/nostringinterning-p.md)
