# “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](https://andreyakinshin.gitbook.io/problembookdotnet/en/strings/currentculture-p)
