Closed
Description
Description
If you run this example on .NET 9, the Valencian language does not appear among the available languages:
https://learn.microsoft.com/en-us/dotnet/api/system.globalization.cultureinfo.getcultures#examples
Even in Windows or Office it is possible to install it as a language:
Reproduction Steps
using System.Globalization;
CultureInfo cultureInfo = new("ca-ES-valencia");
Console.WriteLine(cultureInfo.DisplayName);
Output:
Catalan (Spain, Valencian)
Expected behavior
It should appear in the list of CultureInfo.GetCultures(CultureTypes.AllCultures)
.
Actual behavior
The language does not appear in the list.
Regression?
No response
Known Workarounds
No response
Configuration
No response
Other information
No response