Search code examples
.netlocalizationculture

Link to table showing CultureInfo for ALL cultures


I'm losing my mind trying to find a table showing all the formats of datetimes for cultures

I've been googling like crazy and all i want is that table! ARG

i.e.

en-CA = DD/MM/YYYY 0.00 en-FR = MM/DD/YYYY 0,00

I'm looking for a link to MSDN or wikipedia - I know I've seen this in the past before


Solution

  • foreach (var c in System.Globalization.CultureInfo.
                             GetCultures(CultureTypes.AllCultures))
    {
      Console.WriteLine("{0} = {1}", c.Name, 
                                     c.DateTimeFormat.FullDateTimePattern);
    }