Esempio n. 1
0
 internal CultureIdentifier(string name, CultureIdentifiers.NumericIdentifiers culture, string countryRegion)
 {
     this.name          = name;
     this.culture       = culture;
     this.countryRegion = countryRegion;
     this.localizedName = null;
 }
Esempio n. 2
0
 internal CultureIdentifier(string name, CultureIdentifiers.NumericIdentifiers culture, string localizedName, string countryRegion)
     : this(name, culture, countryRegion)
 {
     this.localizedName = localizedName;
 }