GBCulture Class |
Namespace: Telogis.GeoBase
The GBCulture type exposes the following members.
Name | Description | |
---|---|---|
GBCulture |
Create a new GBCulture object.
| |
GBCulture(String, String) |
Create and initialize a new GBCulture object.
|
Name | Description | |
---|---|---|
CultureIetfLanguageTag |
The IetfLanguageTag (e.g. "en-US", "fr-FR") for this culture.
| |
CultureName |
The display name for this culture.
|
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString |
Returns a string representation of the culture.
(Overrides ObjectToString.) |
GBCulture culture = new GBCulture("en-US", "English (USA)"); Console.WriteLine("Culture for '{0}' is '{1}'", culture.CultureName, culture.CultureIetfLanguageTag); // 'Culture for 'English (USA)' is 'en-US''