views:

75

answers:

2

I just noticed that the .NET Framework doesn't include Cuba in the CultureInfo class (format xx-XX). What is the best practice on this case?

+4  A: 

Since there isn't a specific culture for Cuba, I would stick with simply using es (since it is a Spanish speaking country).

Justin Niessner
+3  A: 

I think best practice is to create a Custom CultureInfo.

Or you could use new CultureInfo("es").

Nicholas Mayne