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

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

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

```csharp
[ThreadStatic]
static readonly int Foo = 42;

void Main()
{
  var thread = new Thread(() => Console.WriteLine(Foo));
  thread.Start();
  thread.Join();
}
```

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