Open SteveSandersonMS opened 3 years ago
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.
Repro:
Program.cs
to contain:Index.razor
the output@((123.45).ToString("c"))
Expected:
@((123.45).ToString("c"))
is rendered as123 JPY
(i.e., no¥
symbol)This is a regression since 5.0. If you do the same with the 5.0 SDK, it will produce the error.
However, if you modify the order of the source code to this:
... then it does produce the correct error on 6.0. So it seems we've changed how the culture change detection works and made it less robust.