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

# “StaticFieldInGenericType” (Problem)

What will the following code display?

```csharp
class Foo<T>
{
  public static int Bar;
}
void Main()
{
  Foo<int>.Bar++;
  Console.WriteLine(Foo<double>.Bar);
}
```

[Solution](/problembookdotnet/en/oop/staticfieldingenerictype-s.md)
