Trying to generate currency type seed data for an application and iterating through the CultureInfo collection of System.Globalization. I kept getting truncation errors on my insert statements until I discovered that when Caribbean comes up (listed at MSDN as CB) a 3 character value of 029 on the TwoLetterISORegionName. I had a serious WTF moment.
Does anyone know why this happens?
To reproduce:
Instantiate the RegionInfo object for the Caribbean.
RegionInfo region = new RegionInfo(9225);
Access the TwoLetterISORegionName property. Value should be CB. Actual value is 026.