-
Running the following sample yields different results in .NET 5.0 compared to .NET Framework and .NET Core: List<string> list = new List<string>() { "current/2", "current_2" };
list.Sort();
foreach (string s in list)
{
Console.WriteLine(s);
} .NET Framework / .NET Core:
.NET 5.0:
@GrabYourPitchforks is this known? I've searched through the repo but couldn't find anything obvious. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
See Globalization APIs use ICU libraries on Windows and the issues here regarding ICU. |
Beta Was this translation helpful? Give feedback.
-
@gfoidl's answer is correct. By default, (Note: using |
Beta Was this translation helpful? Give feedback.
See Globalization APIs use ICU libraries on Windows and the issues here regarding ICU.