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

# “NoStringInterning” (Problem)

Look to the following code:

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

Does it means, that the literal string in this assembly now will be interned?

[Solution](/problembookdotnet/en/strings/nostringinterning-s.md)
