Skip to content

Instantly share code, notes, and snippets.

@emoacht
Created April 10, 2022 06:16
Show Gist options
  • Save emoacht/addbc2d84c2a6ed899282795d9fdfcb7 to your computer and use it in GitHub Desktop.
Save emoacht/addbc2d84c2a6ed899282795d9fdfcb7 to your computer and use it in GitHub Desktop.
Show all supported cultures.
using System;
using System.Globalization;
public class Program
{
static void Main(string[] args)
{
foreach (var c in CultureInfo.GetCultures(CultureTypes.AllCultures))
Console.WriteLine(c);
Console.ReadLine();
}
}
@emoacht
Copy link
Author

emoacht commented Apr 10, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment