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

# “CurrentCulture” (Solution)

## Answer

.NET Runtime will be use `CurrentCulture`.

## Explanation

Thus, the `en-US` locale will be used:

```
12/31/2014 1:01:02 PM
```

The result in the `ru-RU` locale:

```
31.12.2014 13:01:02
```

[Problem](/problembookdotnet/en/strings/currentculture-p.md)
