> 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-p.md).

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

Допустим, мы пометили сборку атрибутом:

```csharp
[assembly: CompilationRelaxationsAttribute
  (CompilationRelaxations.NoStringInterning)]
```

Значит ли это, что литеральные строки в этой сборке не будут интернироваться?

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