Domanda

Sto perdendo la testa cercando di trovare una tabella che mostri tutti i formati dei tempi per le culture

Ho cercato su Google come un matto e tutto ciò che voglio è quel tavolo! ARG

vale a dire.

en-CA = GG / MM / AAAA 0,00 en-FR = MM / GG / AAAA 0,00

Sto cercando un collegamento a MSDN o wikipedia - So di averlo già visto in passato

È stato utile?

Soluzione

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

Altri suggerimenti

Se desideri una pagina web anziché creare tu stesso le informazioni, puoi sempre utilizzare Riferimento API supporto lingua nazionale :

Bashkir (Russia)
046D Codepage info
LCID    046D
Locale name Bashkir (Russia)
Language-English name   Bashkir
Language-native name    Башҡорт (Россия)
ANSI codepage   1251
OEM codepage    866
046D NLS formatting
Number formatting
Positive number example 12 346,00
Negative number example -12 346,00
Decimal separator   ,
Digits after decimal separator  2
Digit grouping  3;0;0
Thousands separator [blank][blank]
Negative format symbol  -
Number list separator   ;
Leading and trailing zeros: 0.700 formatted 0,70
Standard digits 0123456789
System of measurements  Metric
...
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top