Merge pull request #952 from ermshiperete/bug-xamarin-2912
[mono.git] / mcs / class / corlib / Documentation / en / System.Globalization / RegionInfo.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="RegionInfo" FullName="System.Globalization.RegionInfo">
3   <TypeSignature Maintainer="auto" Language="C#" Value="public class RegionInfo" />
4   <TypeSignature Language="ILAsm" Value=".class public sequential ansi serializable beforefieldinit RegionInfo extends System.Object" />
5   <AssemblyInfo>
6     <AssemblyName>mscorlib</AssemblyName>
7     <AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey>
8     <AssemblyVersion>1.0.5000.0</AssemblyVersion>
9     <AssemblyVersion>2.0.0.0</AssemblyVersion>
10     <AssemblyVersion>4.0.0.0</AssemblyVersion>
11   </AssemblyInfo>
12   <ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement>
13   <Base>
14     <BaseTypeName>System.Object</BaseTypeName>
15   </Base>
16   <Interfaces />
17   <Attributes>
18     <Attribute>
19       <AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
20     </Attribute>
21   </Attributes>
22   <Docs>
23     <remarks>
24       <attribution license="cc4" from="Microsoft" modified="false" />
25       <para>Unlike the <see cref="T:System.Globalization.CultureInfo" /> class, the <see cref="T:System.Globalization.RegionInfo" /> class does not represent user preferences and does not depend on the user's language or culture.</para>
26       <format type="text/html">
27         <h2>Names Associated with a RegionInfo Object</h2>
28       </format>
29       <para>The name of a <see cref="T:System.Globalization.RegionInfo" /> object is one of the two-letter codes defined in ISO 3166 for country/region. Case is not significant. The <see cref="P:System.Globalization.RegionInfo.Name" />, <see cref="P:System.Globalization.RegionInfo.TwoLetterISORegionName" />, and <see cref="P:System.Globalization.RegionInfo.ThreeLetterISORegionName" /> properties return the appropriate codes in uppercase. For the current list of <see cref="T:System.Globalization.RegionInfo" /> names, see <see cref="http://go.microsoft.com/fwlink/?LinkId=190591">English country names and code elements</see> on the ISO website. </para>
30       <format type="text/html">
31         <h2>Instantiating a RegionInfo Object</h2>
32       </format>
33       <para>To instantiate a <see cref="T:System.Globalization.RegionInfo" /> object, you pass the <see cref="M:System.Globalization.RegionInfo.#ctor(System.String)" /> constructor either a two-letter region name, such as "US" for the United States, or the name of a specific culture, such as "en-US" for English (United States). However, we recommend that you use a specific culture name instead of a two-letter region name, because a <see cref="T:System.Globalization.RegionInfo" /> object is not completely language-independent. Several <see cref="T:System.Globalization.RegionInfo" /> properties, including <see cref="P:System.Globalization.RegionInfo.DisplayName" />, <see cref="P:System.Globalization.RegionInfo.NativeName" />, and <see cref="P:System.Globalization.RegionInfo.CurrencyNativeName" />, depend on culture names. </para>
34       <para>The following example illustrates the difference in <see cref="T:System.Globalization.RegionInfo" /> property values for three objects that represent Belgium. The first is instantiated from a region name (BE) only, while the second and third are instantiated from culture names (fr-BE for French (Belgium) and and nl-BE for Dutch (Belgium), respectively). The example uses reflection to retrieve the property values of each <see cref="T:System.Globalization.RegionInfo" /> object.</para>
35       <para>code reference: System.Globalization.RegionInfo#2</para>
36       <para>In scenarios such as the following, use culture names instead of country/region names when you instantiate a <see cref="T:System.Globalization.RegionInfo" /> object: </para>
37       <list type="bullet">
38         <item>
39           <para>When the language name is of primary importance. For example, for the es-US culture name, you'll probably want your application to display "Estados Unidos" instead of "United States". Using the country/region name (US) alone yields "United States" regardless of the language, so you should work with the culture name instead. </para>
40         </item>
41         <item>
42           <para>When script differences must be considered. For example, the country/region AZ deals with Azerbaijani cultures that have the names az-Latn-AZ and az-Cyrl-AZ, and the Latin and Cyrillic scripts can be very different for this country/region.</para>
43         </item>
44         <item>
45           <para>When maintenance of detail is important. The values returned by <see cref="T:System.Globalization.RegionInfo" /> members can differ depending on whether the <see cref="T:System.Globalization.RegionInfo" /> object was instantiated by using a culture name or a region name. For example, the following table lists the differences in return values when a <see cref="T:System.Globalization.RegionInfo" /> object is instantiated by using the "US" region, the "en-US" culture, and the "es-US" culture. </para>
46           <list type="table">
47             <listheader>
48               <item>
49                 <term>
50                   <para>Member</para>
51                 </term>
52                 <description>
53                   <para>"US"</para>
54                 </description>
55                 <description>
56                   <para>"en-US"</para>
57                 </description>
58                 <description>
59                   <para>"es-US"</para>
60                 </description>
61               </item>
62             </listheader>
63             <item>
64               <term>
65                 <para>
66                   <see cref="P:System.Globalization.RegionInfo.CurrencyNativeName" />
67                 </para>
68               </term>
69               <description>
70                 <para>US Dollar</para>
71               </description>
72               <description>
73                 <para>US Dollar</para>
74               </description>
75               <description>
76                 <para>Dólar de EE.UU.</para>
77               </description>
78             </item>
79             <item>
80               <term>
81                 <para>
82                   <see cref="P:System.Globalization.RegionInfo.Name" />
83                 </para>
84               </term>
85               <description>
86                 <para>US </para>
87               </description>
88               <description>
89                 <para>en-US</para>
90               </description>
91               <description>
92                 <para>es-US</para>
93               </description>
94             </item>
95             <item>
96               <term>
97                 <para>
98                   <see cref="P:System.Globalization.RegionInfo.NativeName" />
99                 </para>
100               </term>
101               <description>
102                 <para>United States</para>
103               </description>
104               <description>
105                 <para>United States</para>
106               </description>
107               <description>
108                 <para>Estados Unidos</para>
109               </description>
110             </item>
111             <item>
112               <term>
113                 <para>
114                   <see cref="M:System.Globalization.RegionInfo.ToString" />
115                 </para>
116               </term>
117               <description>
118                 <para>US</para>
119               </description>
120               <description>
121                 <para>en-US</para>
122               </description>
123               <description>
124                 <para>es-US</para>
125               </description>
126             </item>
127           </list>
128         </item>
129       </list>
130     </remarks>
131     <summary>
132       <attribution license="cc4" from="Microsoft" modified="false" />
133       <para>Contains information about the country/region.</para>
134     </summary>
135   </Docs>
136   <Members>
137     <Member MemberName=".ctor">
138       <MemberSignature Language="C#" Value="public RegionInfo (int culture);" />
139       <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(int32 culture) cil managed" />
140       <MemberType>Constructor</MemberType>
141       <AssemblyInfo>
142         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
143         <AssemblyVersion>2.0.0.0</AssemblyVersion>
144         <AssemblyVersion>4.0.0.0</AssemblyVersion>
145       </AssemblyInfo>
146       <ReturnValue />
147       <Parameters>
148         <Parameter Name="culture" Type="System.Int32" />
149       </Parameters>
150       <Docs>
151         <remarks>
152           <attribution license="cc4" from="Microsoft" modified="false" />
153           <para>
154             <see cref="M:System.Globalization.RegionInfo.#ctor(System.String)" /> is the recommended constructor for instantiating a <see cref="T:System.Globalization.RegionInfo" /> object. Unlike the <see cref="M:System.Globalization.RegionInfo.#ctor(System.Int32)" /> constructor that requires a numeric culture identifier as a parameter, its parameter is a more readable culture name or country code.</para>
155           <para>The culture identifier is mapped to the corresponding National Language Support (NLS) locale identifier. Detailed culture information appears in the <see cref="http://go.microsoft.com/fwlink/?LinkId=200048">National Language Support (NLS) API Reference</see> at the Go Global Developer Center.</para>
156           <para>The value of the <see cref="P:System.Globalization.RegionInfo.Name" /> property of the new <see cref="T:System.Globalization.RegionInfo" /> object instantiated by calling this constructor is the ISO 3166 2-letter code for the country/region, not the combined language and country/region code. For example, if a <see cref="T:System.Globalization.RegionInfo" /> object is instantiated with the culture identifier 0x0409 for the English (United States) culture, the value of the <see cref="P:System.Globalization.RegionInfo.Name" /> property is "US". In contrast, if a <see cref="T:System.Globalization.RegionInfo" /> object is instantiated with the combined language and country/region code en-US for the English (United States) culture, the value of the <see cref="P:System.Globalization.RegionInfo.Name" /> property is "en-US".</para>
157         </remarks>
158         <summary>
159           <attribution license="cc4" from="Microsoft" modified="false" />
160           <para>Initializes a new instance of the <see cref="T:System.Globalization.RegionInfo" /> class based on the country/region associated with the specified culture identifier.</para>
161         </summary>
162         <param name="culture">
163           <attribution license="cc4" from="Microsoft" modified="false" />A culture identifier. </param>
164       </Docs>
165     </Member>
166     <Member MemberName=".ctor">
167       <MemberSignature Language="C#" Value="public RegionInfo (string name);" />
168       <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string name) cil managed" />
169       <MemberType>Constructor</MemberType>
170       <AssemblyInfo>
171         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
172         <AssemblyVersion>2.0.0.0</AssemblyVersion>
173         <AssemblyVersion>4.0.0.0</AssemblyVersion>
174       </AssemblyInfo>
175       <ReturnValue />
176       <Parameters>
177         <Parameter Name="name" Type="System.String" />
178       </Parameters>
179       <Docs>
180         <remarks>
181           <attribution license="cc4" from="Microsoft" modified="false" />
182           <para>The <paramref name="name" /> parameter is either one of the codes defined for country/region, or a specific, custom, or Windows-only culture name. Case is not significant. However, the <see cref="P:System.Globalization.RegionInfo.Name" />, the <see cref="P:System.Globalization.RegionInfo.TwoLetterISORegionName" />, and the <see cref="P:System.Globalization.RegionInfo.ThreeLetterISORegionName" /> properties return the specified code or culture name in uppercase. See further discussion in <format type="text/html"><a href="20a7b6ee-4705-4e0b-a4a2-d72341b1d495">Names Associated with a RegionInfo Object</a></format>.</para>
183           <para>The predefined <see cref="T:System.Globalization.RegionInfo" /> names are listed in <see cref="http://go.microsoft.com/fwlink/?LinkId=190591">Country names and code elements</see> on the ISO website. </para>
184           <para>You should provide the name of a specific culture rather than just a country/region name in the <paramref name="name" /> parameter. For example, en-US for English (United States) or es-US for Spanish (United States) is preferable to US because properties such as <see cref="P:System.Globalization.RegionInfo.NativeName" /> and <see cref="P:System.Globalization.RegionInfo.CurrencyNativeName" /> reflect a specific language. az-Latn-AZ or az-Cyrl-AZ is preferable to AZ because properties such as <see cref="P:System.Globalization.RegionInfo.NativeName" />, <see cref="P:System.Globalization.RegionInfo.CurrencyNativeName" />, and <see cref="P:System.Globalization.RegionInfo.CurrencySymbol" /> reflect a specific script.  The predefined culture names are listed in the <see cref="http://go.microsoft.com/fwlink/?LinkId=200048">National Language Support (NLS) API Reference</see> at the Go Global Developer Center. Note that a call to this constructor throws an <see cref="T:System.ArgumentException" /> if <paramref name="name" /> is a neutral culture (such as en for English). </para>
185         </remarks>
186         <summary>
187           <attribution license="cc4" from="Microsoft" modified="false" />
188           <para>Initializes a new instance of the <see cref="T:System.Globalization.RegionInfo" /> class based on the country/region or specific culture, specified by name.</para>
189         </summary>
190         <param name="name">
191           <attribution license="cc4" from="Microsoft" modified="false" />A string that contains a two-letter code defined in ISO 3166 for country/region.</param>
192       </Docs>
193     </Member>
194     <Member MemberName="CurrencyEnglishName">
195       <MemberSignature Language="C#" Value="public virtual string CurrencyEnglishName { get; }" />
196       <MemberSignature Language="ILAsm" Value=".property instance string CurrencyEnglishName" />
197       <MemberType>Property</MemberType>
198       <AssemblyInfo>
199         <AssemblyVersion>2.0.0.0</AssemblyVersion>
200         <AssemblyVersion>4.0.0.0</AssemblyVersion>
201       </AssemblyInfo>
202       <Attributes>
203         <Attribute>
204           <AttributeName>System.Runtime.InteropServices.ComVisible(false)</AttributeName>
205         </Attribute>
206       </Attributes>
207       <ReturnValue>
208         <ReturnType>System.String</ReturnType>
209       </ReturnValue>
210       <Docs>
211         <value>To be added.</value>
212         <remarks>To be added.</remarks>
213         <since version=".NET 2.0" />
214         <summary>
215           <attribution license="cc4" from="Microsoft" modified="false" />
216           <para>Gets the name, in English, of the currency used in the country/region.</para>
217         </summary>
218       </Docs>
219     </Member>
220     <Member MemberName="CurrencyNativeName">
221       <MemberSignature Language="C#" Value="public virtual string CurrencyNativeName { get; }" />
222       <MemberSignature Language="ILAsm" Value=".property instance string CurrencyNativeName" />
223       <MemberType>Property</MemberType>
224       <AssemblyInfo>
225         <AssemblyVersion>2.0.0.0</AssemblyVersion>
226         <AssemblyVersion>4.0.0.0</AssemblyVersion>
227       </AssemblyInfo>
228       <Attributes>
229         <Attribute>
230           <AttributeName>System.Runtime.InteropServices.ComVisible(false)</AttributeName>
231         </Attribute>
232       </Attributes>
233       <ReturnValue>
234         <ReturnType>System.String</ReturnType>
235       </ReturnValue>
236       <Docs>
237         <value>To be added.</value>
238         <since version=".NET 2.0" />
239         <remarks>
240           <attribution license="cc4" from="Microsoft" modified="false" />
241           <para>If the current <see cref="T:System.Globalization.RegionInfo" /> object is created with a specific culture and more than one language is used in the corresponding country/region, the <see cref="P:System.Globalization.RegionInfo.CurrencyNativeName" /> property retrieves the currency name associated with the specific culture.</para>
242           <para>The value of this property depends on the language that is associated with a particular country/region. Therefore, if you intend to use the <see cref="P:System.Globalization.RegionInfo.CurrencyNativeName" /> property, you should instantiate the <see cref="T:System.Globalization.RegionInfo" /> object by passing the <see cref="M:System.Globalization.RegionInfo.#ctor(System.String)" /> constructor a combined language and country/region code. For example, if a <see cref="T:System.Globalization.RegionInfo" /> object is instantiated with a combined language and country/region code of "en-CA" for English (Canada), the value of its <see cref="P:System.Globalization.RegionInfo.CurrencyNativeName" /> property is "Canadian Dollar". If it is instantiated with a combined language and country/region code of "fr-CA" for French (Canada), the value of its <see cref="P:System.Globalization.RegionInfo.CurrencyNativeName" /> property is "Dollar canadien". Therefore, creating the RegionInfo object with only a country/region name ("CA" in this case) is not specific enough to distinguish the appropriate native currency name.</para>
243         </remarks>
244         <summary>
245           <attribution license="cc4" from="Microsoft" modified="false" />
246           <para>Gets the name of the currency used in the country/region, formatted in the native language of the country/region. </para>
247         </summary>
248       </Docs>
249     </Member>
250     <Member MemberName="CurrencySymbol">
251       <MemberSignature Language="C#" Value="public virtual string CurrencySymbol { get; }" />
252       <MemberSignature Language="ILAsm" Value=".property instance string CurrencySymbol" />
253       <MemberType>Property</MemberType>
254       <AssemblyInfo>
255         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
256         <AssemblyVersion>2.0.0.0</AssemblyVersion>
257         <AssemblyVersion>4.0.0.0</AssemblyVersion>
258       </AssemblyInfo>
259       <ReturnValue>
260         <ReturnType>System.String</ReturnType>
261       </ReturnValue>
262       <Docs>
263         <value>To be added: an object of type 'string'</value>
264         <remarks>
265           <attribution license="cc4" from="Microsoft" modified="false" />
266           <para>For example, the currency symbol for the United States is "$".</para>
267           <para>If the current <see cref="T:System.Globalization.RegionInfo" /> object is created with a specific culture and more than one language is used in the corresponding country/region, the <see cref="P:System.Globalization.RegionInfo.CurrencySymbol" /> property returns the currency symbol associated with the specific culture.</para>
268         </remarks>
269         <summary>
270           <attribution license="cc4" from="Microsoft" modified="false" />
271           <para>Gets the currency symbol associated with the country/region.</para>
272         </summary>
273       </Docs>
274     </Member>
275     <Member MemberName="CurrentRegion">
276       <MemberSignature Language="C#" Value="public static System.Globalization.RegionInfo CurrentRegion { get; }" />
277       <MemberSignature Language="ILAsm" Value=".property class System.Globalization.RegionInfo CurrentRegion" />
278       <MemberType>Property</MemberType>
279       <AssemblyInfo>
280         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
281         <AssemblyVersion>2.0.0.0</AssemblyVersion>
282         <AssemblyVersion>4.0.0.0</AssemblyVersion>
283       </AssemblyInfo>
284       <ReturnValue>
285         <ReturnType>System.Globalization.RegionInfo</ReturnType>
286       </ReturnValue>
287       <Docs>
288         <value>To be added: an object of type 'RegionInfo'</value>
289         <remarks>
290           <attribution license="cc4" from="Microsoft" modified="false" />
291           <para>The value of this property is based on the culture selected through the regional and language options portion of Control Panel. However, that information can change during the life of the <see cref="T:System.AppDomain" />. The <see cref="T:System.Globalization.RegionInfo" /> class does not automatically detect changes in the system settings, but the <see cref="P:System.Globalization.RegionInfo.CurrentRegion" /> property is updated when you call the <see cref="M:System.Globalization.CultureInfo.ClearCachedData" /> method.</para>
292         </remarks>
293         <summary>
294           <attribution license="cc4" from="Microsoft" modified="false" />
295           <para>Gets the <see cref="T:System.Globalization.RegionInfo" /> that represents the country/region used by the current thread.</para>
296         </summary>
297       </Docs>
298     </Member>
299     <Member MemberName="DisplayName">
300       <MemberSignature Language="C#" Value="public virtual string DisplayName { get; }" />
301       <MemberSignature Language="ILAsm" Value=".property instance string DisplayName" />
302       <MemberType>Property</MemberType>
303       <AssemblyInfo>
304         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
305         <AssemblyVersion>2.0.0.0</AssemblyVersion>
306         <AssemblyVersion>4.0.0.0</AssemblyVersion>
307       </AssemblyInfo>
308       <ReturnValue>
309         <ReturnType>System.String</ReturnType>
310       </ReturnValue>
311       <Docs>
312         <value>To be added: an object of type 'string'</value>
313         <remarks>
314           <attribution license="cc4" from="Microsoft" modified="false" />
315           <para>The <see cref="P:System.Globalization.RegionInfo.DisplayName" /> property displays the country/region name in the language of the localized version of .NET Framework. For example, the <see cref="P:System.Globalization.RegionInfo.DisplayName" /> property displays the country/region in English on the English version of the .NET Framework, and in Spanish on the Spanish version of the .NET Framework.</para>
316           <para>The value of the <see cref="P:System.Globalization.RegionInfo.DisplayName" /> property is taken from the resource files in the language of the current user interface culture, represented by <see cref="P:System.Globalization.CultureInfo.CurrentUICulture" />. Custom regions or those synthesized from the operating system might not have resource information, in which case the value for <see cref="P:System.Globalization.RegionInfo.DisplayName" /> is the same as the value of the <see cref="P:System.Globalization.RegionInfo.NativeName" /> property.</para>
317         </remarks>
318         <summary>
319           <attribution license="cc4" from="Microsoft" modified="false" />
320           <para>Gets the full name of the country/region in the language of the localized version of .NET Framework.</para>
321         </summary>
322       </Docs>
323     </Member>
324     <Member MemberName="EnglishName">
325       <MemberSignature Language="C#" Value="public virtual string EnglishName { get; }" />
326       <MemberSignature Language="ILAsm" Value=".property instance string EnglishName" />
327       <MemberType>Property</MemberType>
328       <AssemblyInfo>
329         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
330         <AssemblyVersion>2.0.0.0</AssemblyVersion>
331         <AssemblyVersion>4.0.0.0</AssemblyVersion>
332       </AssemblyInfo>
333       <ReturnValue>
334         <ReturnType>System.String</ReturnType>
335       </ReturnValue>
336       <Docs>
337         <value>To be added: an object of type 'string'</value>
338         <remarks>
339           <attribution license="cc4" from="Microsoft" modified="false" />
340           <para>For example, a <see cref="T:System.Globalization.RegionInfo" /> object created for the English (United States) culture displays "United States".</para>
341         </remarks>
342         <summary>
343           <attribution license="cc4" from="Microsoft" modified="false" />
344           <para>Gets the full name of the country/region in English.</para>
345         </summary>
346       </Docs>
347     </Member>
348     <Member MemberName="Equals">
349       <MemberSignature Language="C#" Value="public override bool Equals (object value);" />
350       <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance bool Equals(object value) cil managed" />
351       <MemberType>Method</MemberType>
352       <AssemblyInfo>
353         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
354         <AssemblyVersion>2.0.0.0</AssemblyVersion>
355         <AssemblyVersion>4.0.0.0</AssemblyVersion>
356       </AssemblyInfo>
357       <ReturnValue>
358         <ReturnType>System.Boolean</ReturnType>
359       </ReturnValue>
360       <Parameters>
361         <Parameter Name="value" Type="System.Object" />
362       </Parameters>
363       <Docs>
364         <remarks>
365           <attribution license="cc4" from="Microsoft" modified="false" />
366           <para>This method overrides <see cref="M:System.Object.Equals(System.Object)" />.</para>
367         </remarks>
368         <summary>
369           <attribution license="cc4" from="Microsoft" modified="false" />
370           <para>Determines whether the specified object is the same instance as the current <see cref="T:System.Globalization.RegionInfo" />.</para>
371         </summary>
372         <returns>
373           <attribution license="cc4" from="Microsoft" modified="false" />
374           <para>true if the <paramref name="value" /> parameter is a <see cref="T:System.Globalization.RegionInfo" /> object and its <see cref="P:System.Globalization.RegionInfo.Name" /> property is the same as the <see cref="P:System.Globalization.RegionInfo.Name" /> property of the current <see cref="T:System.Globalization.RegionInfo" /> object; otherwise, false.</para>
375         </returns>
376         <param name="value">
377           <attribution license="cc4" from="Microsoft" modified="false" />The object to compare with the current <see cref="T:System.Globalization.RegionInfo" />. </param>
378       </Docs>
379     </Member>
380     <Member MemberName="GeoId">
381       <MemberSignature Language="C#" Value="public virtual int GeoId { get; }" />
382       <MemberSignature Language="ILAsm" Value=".property instance int32 GeoId" />
383       <MemberType>Property</MemberType>
384       <AssemblyInfo>
385         <AssemblyVersion>2.0.0.0</AssemblyVersion>
386         <AssemblyVersion>4.0.0.0</AssemblyVersion>
387       </AssemblyInfo>
388       <Attributes>
389         <Attribute>
390           <AttributeName>System.Runtime.InteropServices.ComVisible(false)</AttributeName>
391         </Attribute>
392       </Attributes>
393       <ReturnValue>
394         <ReturnType>System.Int32</ReturnType>
395       </ReturnValue>
396       <Docs>
397         <value>To be added.</value>
398         <since version=".NET 2.0" />
399         <remarks>
400           <attribution license="cc4" from="Microsoft" modified="false" />
401           <para>The application should use the <see cref="P:System.Globalization.RegionInfo.GeoId" /> property to provide culture-specific services to customers. For example, the <see cref="P:System.Globalization.RegionInfo.GeoId" /> property can be used as a key to access a database record that contains specific information about a country/region. </para>
402           <para>This property value corresponds to the Windows GetUserGeoID function. For a list of geographical identifiers, see <see cref="http://go.microsoft.com/fwlink/?LinkId=191287">Table of Geographical Locations</see> in the MSDN Library.</para>
403         </remarks>
404         <summary>
405           <attribution license="cc4" from="Microsoft" modified="false" />
406           <para>Gets a unique identification number for a geographical region, country, city, or location.</para>
407         </summary>
408       </Docs>
409     </Member>
410     <Member MemberName="GetHashCode">
411       <MemberSignature Language="C#" Value="public override int GetHashCode ();" />
412       <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance int32 GetHashCode() cil managed" />
413       <MemberType>Method</MemberType>
414       <AssemblyInfo>
415         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
416         <AssemblyVersion>2.0.0.0</AssemblyVersion>
417         <AssemblyVersion>4.0.0.0</AssemblyVersion>
418       </AssemblyInfo>
419       <ReturnValue>
420         <ReturnType>System.Int32</ReturnType>
421       </ReturnValue>
422       <Parameters />
423       <Docs>
424         <remarks>
425           <attribution license="cc4" from="Microsoft" modified="false" />
426           <para>This method overrides <see cref="M:System.Object.GetHashCode" />.</para>
427           <para>This method generates the same hash code for two objects that are equal according to the <see cref="M:System.Globalization.RegionInfo.Equals(System.Object)" /> method.</para>
428         </remarks>
429         <summary>
430           <attribution license="cc4" from="Microsoft" modified="false" />
431           <para>Serves as a hash function for the current <see cref="T:System.Globalization.RegionInfo" />, suitable for hashing algorithms and data structures, such as a hash table.</para>
432         </summary>
433         <returns>
434           <attribution license="cc4" from="Microsoft" modified="false" />
435           <para>A hash code for the current <see cref="T:System.Globalization.RegionInfo" />.</para>
436         </returns>
437       </Docs>
438     </Member>
439     <Member MemberName="IsMetric">
440       <MemberSignature Language="C#" Value="public virtual bool IsMetric { get; }" />
441       <MemberSignature Language="ILAsm" Value=".property instance bool IsMetric" />
442       <MemberType>Property</MemberType>
443       <AssemblyInfo>
444         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
445         <AssemblyVersion>2.0.0.0</AssemblyVersion>
446         <AssemblyVersion>4.0.0.0</AssemblyVersion>
447       </AssemblyInfo>
448       <ReturnValue>
449         <ReturnType>System.Boolean</ReturnType>
450       </ReturnValue>
451       <Docs>
452         <value>To be added: an object of type 'bool'</value>
453         <remarks>To be added</remarks>
454         <summary>
455           <attribution license="cc4" from="Microsoft" modified="false" />
456           <para>Gets a value indicating whether the country/region uses the metric system for measurements.</para>
457         </summary>
458       </Docs>
459     </Member>
460     <Member MemberName="ISOCurrencySymbol">
461       <MemberSignature Language="C#" Value="public virtual string ISOCurrencySymbol { get; }" />
462       <MemberSignature Language="ILAsm" Value=".property instance string ISOCurrencySymbol" />
463       <MemberType>Property</MemberType>
464       <AssemblyInfo>
465         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
466         <AssemblyVersion>2.0.0.0</AssemblyVersion>
467         <AssemblyVersion>4.0.0.0</AssemblyVersion>
468       </AssemblyInfo>
469       <ReturnValue>
470         <ReturnType>System.String</ReturnType>
471       </ReturnValue>
472       <Docs>
473         <value>To be added: an object of type 'string'</value>
474         <remarks>
475           <attribution license="cc4" from="Microsoft" modified="false" />
476           <para>The following example lists some of the ISO 4217 currency symbols returned by the <see cref="P:System.Globalization.RegionInfo.ISOCurrencySymbol" /> property. </para>
477           <list type="table">
478             <listheader>
479               <item>
480                 <term>
481                   <para>Country/region </para>
482                 </term>
483                 <description>
484                   <para>Currency name </para>
485                 </description>
486                 <description>
487                   <para>ISO 4217 currency symbol </para>
488                 </description>
489               </item>
490             </listheader>
491             <item>
492               <term>
493                 <para>Albania </para>
494               </term>
495               <description>
496                 <para>Albanian Lek </para>
497               </description>
498               <description>
499                 <para>ALL </para>
500               </description>
501             </item>
502             <item>
503               <term>
504                 <para>Algeria </para>
505               </term>
506               <description>
507                 <para>Algerian Dinar </para>
508               </description>
509               <description>
510                 <para>DZD </para>
511               </description>
512             </item>
513             <item>
514               <term>
515                 <para>Argentina </para>
516               </term>
517               <description>
518                 <para>Argentine Peso </para>
519               </description>
520               <description>
521                 <para>ARS </para>
522               </description>
523             </item>
524             <item>
525               <term>
526                 <para>Armenia </para>
527               </term>
528               <description>
529                 <para>Armenian Dram </para>
530               </description>
531               <description>
532                 <para>AMD </para>
533               </description>
534             </item>
535             <item>
536               <term>
537                 <para>Australia </para>
538               </term>
539               <description>
540                 <para>Australian Dollar </para>
541               </description>
542               <description>
543                 <para>AUD </para>
544               </description>
545             </item>
546             <item>
547               <term>
548                 <para>Austria </para>
549               </term>
550               <description>
551                 <para>Euro </para>
552               </description>
553               <description>
554                 <para>EUR </para>
555               </description>
556             </item>
557             <item>
558               <term>
559                 <para>Azerbaijan </para>
560               </term>
561               <description>
562                 <para>Azerbaijanian Manat </para>
563               </description>
564               <description>
565                 <para>AZN </para>
566               </description>
567             </item>
568             <item>
569               <term>
570                 <para>Bahrain </para>
571               </term>
572               <description>
573                 <para>Bahraini Dinar </para>
574               </description>
575               <description>
576                 <para>BHD </para>
577               </description>
578             </item>
579             <item>
580               <term>
581                 <para>Belarus </para>
582               </term>
583               <description>
584                 <para>Belarussian Ruble </para>
585               </description>
586               <description>
587                 <para>BYR </para>
588               </description>
589             </item>
590             <item>
591               <term>
592                 <para>Belgium </para>
593               </term>
594               <description>
595                 <para>Euro </para>
596               </description>
597               <description>
598                 <para>EUR </para>
599               </description>
600             </item>
601             <item>
602               <term>
603                 <para>Belize </para>
604               </term>
605               <description>
606                 <para>Belize Dollar </para>
607               </description>
608               <description>
609                 <para>BZD </para>
610               </description>
611             </item>
612             <item>
613               <term>
614                 <para>Bolivarian Republic of Venezuela </para>
615               </term>
616               <description>
617                 <para>Venezuelan Bolivar </para>
618               </description>
619               <description>
620                 <para>VEF </para>
621               </description>
622             </item>
623             <item>
624               <term>
625                 <para>Bolivia </para>
626               </term>
627               <description>
628                 <para>Boliviano </para>
629               </description>
630               <description>
631                 <para>BOB </para>
632               </description>
633             </item>
634             <item>
635               <term>
636                 <para>Brazil </para>
637               </term>
638               <description>
639                 <para>Real </para>
640               </description>
641               <description>
642                 <para>BRL </para>
643               </description>
644             </item>
645             <item>
646               <term>
647                 <para>Brunei </para>
648               </term>
649               <description>
650                 <para>Brunei Dollar </para>
651               </description>
652               <description>
653                 <para>BND </para>
654               </description>
655             </item>
656             <item>
657               <term>
658                 <para>Bulgaria </para>
659               </term>
660               <description>
661                 <para>Bulgarian Lev </para>
662               </description>
663               <description>
664                 <para>BGN </para>
665               </description>
666             </item>
667             <item>
668               <term>
669                 <para>Canada </para>
670               </term>
671               <description>
672                 <para>Canadian Dollar </para>
673               </description>
674               <description>
675                 <para>CAD </para>
676               </description>
677             </item>
678             <item>
679               <term>
680                 <para>Caribbean </para>
681               </term>
682               <description>
683                 <para>US Dollar </para>
684               </description>
685               <description>
686                 <para>USD </para>
687               </description>
688             </item>
689             <item>
690               <term>
691                 <para>Chile </para>
692               </term>
693               <description>
694                 <para>Chilean Peso </para>
695               </description>
696               <description>
697                 <para>CLP </para>
698               </description>
699             </item>
700             <item>
701               <term>
702                 <para>Colombia </para>
703               </term>
704               <description>
705                 <para>Colombian Peso </para>
706               </description>
707               <description>
708                 <para>COP </para>
709               </description>
710             </item>
711             <item>
712               <term>
713                 <para>Costa Rica </para>
714               </term>
715               <description>
716                 <para>Costa Rican Colon </para>
717               </description>
718               <description>
719                 <para>CRC </para>
720               </description>
721             </item>
722             <item>
723               <term>
724                 <para>Croatia </para>
725               </term>
726               <description>
727                 <para>Croatian Kuna </para>
728               </description>
729               <description>
730                 <para>HRK </para>
731               </description>
732             </item>
733             <item>
734               <term>
735                 <para>Czech Republic </para>
736               </term>
737               <description>
738                 <para>Czech Koruna </para>
739               </description>
740               <description>
741                 <para>CZK </para>
742               </description>
743             </item>
744             <item>
745               <term>
746                 <para>Denmark </para>
747               </term>
748               <description>
749                 <para>Danish Krone </para>
750               </description>
751               <description>
752                 <para>DKK </para>
753               </description>
754             </item>
755             <item>
756               <term>
757                 <para>Dominican Republic </para>
758               </term>
759               <description>
760                 <para>Dominican Peso </para>
761               </description>
762               <description>
763                 <para>DOP </para>
764               </description>
765             </item>
766             <item>
767               <term>
768                 <para>Ecuador </para>
769               </term>
770               <description>
771                 <para>US Dollar </para>
772               </description>
773               <description>
774                 <para>USD </para>
775               </description>
776             </item>
777             <item>
778               <term>
779                 <para>Egypt </para>
780               </term>
781               <description>
782                 <para>Egyptian Pound </para>
783               </description>
784               <description>
785                 <para>EGP </para>
786               </description>
787             </item>
788             <item>
789               <term>
790                 <para>El Salvador </para>
791               </term>
792               <description>
793                 <para>U.S. Dollar </para>
794               </description>
795               <description>
796                 <para>USD </para>
797               </description>
798             </item>
799             <item>
800               <term>
801                 <para>Estonia </para>
802               </term>
803               <description>
804                 <para>Estonian Kroon </para>
805               </description>
806               <description>
807                 <para>EEK </para>
808               </description>
809             </item>
810             <item>
811               <term>
812                 <para>Ethiopia</para>
813               </term>
814               <description>
815                 <para>Ethiopian Birr</para>
816               </description>
817               <description>
818                 <para>ETB</para>
819               </description>
820             </item>
821             <item>
822               <term>
823                 <para>Faroe Islands </para>
824               </term>
825               <description>
826                 <para>Danish Krone </para>
827               </description>
828               <description>
829                 <para>DKK </para>
830               </description>
831             </item>
832             <item>
833               <term>
834                 <para>Finland </para>
835               </term>
836               <description>
837                 <para>Euro </para>
838               </description>
839               <description>
840                 <para>EUR </para>
841               </description>
842             </item>
843             <item>
844               <term>
845                 <para>France </para>
846               </term>
847               <description>
848                 <para>Euro </para>
849               </description>
850               <description>
851                 <para>EUR </para>
852               </description>
853             </item>
854             <item>
855               <term>
856                 <para>Georgia </para>
857               </term>
858               <description>
859                 <para>Lari </para>
860               </description>
861               <description>
862                 <para>GEL </para>
863               </description>
864             </item>
865             <item>
866               <term>
867                 <para>Germany </para>
868               </term>
869               <description>
870                 <para>Euro </para>
871               </description>
872               <description>
873                 <para>EUR </para>
874               </description>
875             </item>
876             <item>
877               <term>
878                 <para>Greece </para>
879               </term>
880               <description>
881                 <para>Euro </para>
882               </description>
883               <description>
884                 <para>EUR </para>
885               </description>
886             </item>
887             <item>
888               <term>
889                 <para>Guatemala </para>
890               </term>
891               <description>
892                 <para>Guatemalan Quetzal </para>
893               </description>
894               <description>
895                 <para>GTQ </para>
896               </description>
897             </item>
898             <item>
899               <term>
900                 <para>Honduras </para>
901               </term>
902               <description>
903                 <para>Honduran Lempira </para>
904               </description>
905               <description>
906                 <para>HNL </para>
907               </description>
908             </item>
909             <item>
910               <term>
911                 <para>Hong Kong SAR </para>
912               </term>
913               <description>
914                 <para>Hong Kong Dollar </para>
915               </description>
916               <description>
917                 <para>HKD </para>
918               </description>
919             </item>
920             <item>
921               <term>
922                 <para>Hungary </para>
923               </term>
924               <description>
925                 <para>Hungarian Forint </para>
926               </description>
927               <description>
928                 <para>HUF </para>
929               </description>
930             </item>
931             <item>
932               <term>
933                 <para>Iceland </para>
934               </term>
935               <description>
936                 <para>Icelandic Krona </para>
937               </description>
938               <description>
939                 <para>ISK </para>
940               </description>
941             </item>
942             <item>
943               <term>
944                 <para>India </para>
945               </term>
946               <description>
947                 <para>Indian Rupee </para>
948               </description>
949               <description>
950                 <para>INR </para>
951               </description>
952             </item>
953             <item>
954               <term>
955                 <para>Indonesia </para>
956               </term>
957               <description>
958                 <para>Indonesian Rupiah </para>
959               </description>
960               <description>
961                 <para>IDR </para>
962               </description>
963             </item>
964             <item>
965               <term>
966                 <para>Iran </para>
967               </term>
968               <description>
969                 <para>Iranian Rial </para>
970               </description>
971               <description>
972                 <para>IRR </para>
973               </description>
974             </item>
975             <item>
976               <term>
977                 <para>Iraq </para>
978               </term>
979               <description>
980                 <para>Iraqi Dinar </para>
981               </description>
982               <description>
983                 <para>IQD </para>
984               </description>
985             </item>
986             <item>
987               <term>
988                 <para>Ireland </para>
989               </term>
990               <description>
991                 <para>Euro </para>
992               </description>
993               <description>
994                 <para>EUR </para>
995               </description>
996             </item>
997             <item>
998               <term>
999                 <para>Islamic Republic of Pakistan </para>
1000               </term>
1001               <description>
1002                 <para>Pakistan Rupee </para>
1003               </description>
1004               <description>
1005                 <para>PKR </para>
1006               </description>
1007             </item>
1008             <item>
1009               <term>
1010                 <para>Israel </para>
1011               </term>
1012               <description>
1013                 <para>Israeli New Shekel </para>
1014               </description>
1015               <description>
1016                 <para>ILS </para>
1017               </description>
1018             </item>
1019             <item>
1020               <term>
1021                 <para>Italy </para>
1022               </term>
1023               <description>
1024                 <para>Euro </para>
1025               </description>
1026               <description>
1027                 <para>EUR </para>
1028               </description>
1029             </item>
1030             <item>
1031               <term>
1032                 <para>Jamaica </para>
1033               </term>
1034               <description>
1035                 <para>Jamaican Dollar </para>
1036               </description>
1037               <description>
1038                 <para>JMD </para>
1039               </description>
1040             </item>
1041             <item>
1042               <term>
1043                 <para>Japan </para>
1044               </term>
1045               <description>
1046                 <para>Japanese Yen </para>
1047               </description>
1048               <description>
1049                 <para>JPY </para>
1050               </description>
1051             </item>
1052             <item>
1053               <term>
1054                 <para>Jordan </para>
1055               </term>
1056               <description>
1057                 <para>Jordanian Dinar </para>
1058               </description>
1059               <description>
1060                 <para>JOD </para>
1061               </description>
1062             </item>
1063             <item>
1064               <term>
1065                 <para>Kazakhstan </para>
1066               </term>
1067               <description>
1068                 <para>Tenge </para>
1069               </description>
1070               <description>
1071                 <para>KZT </para>
1072               </description>
1073             </item>
1074             <item>
1075               <term>
1076                 <para>Kenya </para>
1077               </term>
1078               <description>
1079                 <para>Kenyan Shilling </para>
1080               </description>
1081               <description>
1082                 <para>KES </para>
1083               </description>
1084             </item>
1085             <item>
1086               <term>
1087                 <para>Korea </para>
1088               </term>
1089               <description>
1090                 <para>Korean Won </para>
1091               </description>
1092               <description>
1093                 <para>KRW </para>
1094               </description>
1095             </item>
1096             <item>
1097               <term>
1098                 <para>Kuwait </para>
1099               </term>
1100               <description>
1101                 <para>Kuwaiti Dinar </para>
1102               </description>
1103               <description>
1104                 <para>KWD </para>
1105               </description>
1106             </item>
1107             <item>
1108               <term>
1109                 <para>Kyrgyzstan </para>
1110               </term>
1111               <description>
1112                 <para>som </para>
1113               </description>
1114               <description>
1115                 <para>KGS </para>
1116               </description>
1117             </item>
1118             <item>
1119               <term>
1120                 <para>Latvia </para>
1121               </term>
1122               <description>
1123                 <para>Latvian Lats </para>
1124               </description>
1125               <description>
1126                 <para>LVL </para>
1127               </description>
1128             </item>
1129             <item>
1130               <term>
1131                 <para>Lebanon </para>
1132               </term>
1133               <description>
1134                 <para>Lebanese Pound </para>
1135               </description>
1136               <description>
1137                 <para>LBP </para>
1138               </description>
1139             </item>
1140             <item>
1141               <term>
1142                 <para>Libya </para>
1143               </term>
1144               <description>
1145                 <para>Libyan Dinar </para>
1146               </description>
1147               <description>
1148                 <para>LYD </para>
1149               </description>
1150             </item>
1151             <item>
1152               <term>
1153                 <para>Liechtenstein </para>
1154               </term>
1155               <description>
1156                 <para>Swiss Franc </para>
1157               </description>
1158               <description>
1159                 <para>CHF </para>
1160               </description>
1161             </item>
1162             <item>
1163               <term>
1164                 <para>Lithuania </para>
1165               </term>
1166               <description>
1167                 <para>Lithuanian Litas </para>
1168               </description>
1169               <description>
1170                 <para>LTL </para>
1171               </description>
1172             </item>
1173             <item>
1174               <term>
1175                 <para>Luxembourg </para>
1176               </term>
1177               <description>
1178                 <para>Euro </para>
1179               </description>
1180               <description>
1181                 <para>EUR </para>
1182               </description>
1183             </item>
1184             <item>
1185               <term>
1186                 <para>Macao SAR </para>
1187               </term>
1188               <description>
1189                 <para>Macao Pataca </para>
1190               </description>
1191               <description>
1192                 <para>MOP </para>
1193               </description>
1194             </item>
1195             <item>
1196               <term>
1197                 <para>Macedonia (FYROM)</para>
1198               </term>
1199               <description>
1200                 <para>Macedonian Denar </para>
1201               </description>
1202               <description>
1203                 <para>MKD </para>
1204               </description>
1205             </item>
1206             <item>
1207               <term>
1208                 <para>Malaysia </para>
1209               </term>
1210               <description>
1211                 <para>Malaysian Ringgit </para>
1212               </description>
1213               <description>
1214                 <para>MYR </para>
1215               </description>
1216             </item>
1217             <item>
1218               <term>
1219                 <para>Maldives </para>
1220               </term>
1221               <description>
1222                 <para>Rufiyaa </para>
1223               </description>
1224               <description>
1225                 <para>MVR </para>
1226               </description>
1227             </item>
1228             <item>
1229               <term>
1230                 <para>Mexico </para>
1231               </term>
1232               <description>
1233                 <para>Mexican Peso </para>
1234               </description>
1235               <description>
1236                 <para>MXN </para>
1237               </description>
1238             </item>
1239             <item>
1240               <term>
1241                 <para>Mongolia </para>
1242               </term>
1243               <description>
1244                 <para>Tugrik </para>
1245               </description>
1246               <description>
1247                 <para>MNT </para>
1248               </description>
1249             </item>
1250             <item>
1251               <term>
1252                 <para>Morocco </para>
1253               </term>
1254               <description>
1255                 <para>Moroccan Dirham </para>
1256               </description>
1257               <description>
1258                 <para>MAD </para>
1259               </description>
1260             </item>
1261             <item>
1262               <term>
1263                 <para>Netherlands </para>
1264               </term>
1265               <description>
1266                 <para>Euro </para>
1267               </description>
1268               <description>
1269                 <para>EUR </para>
1270               </description>
1271             </item>
1272             <item>
1273               <term>
1274                 <para>New Zealand </para>
1275               </term>
1276               <description>
1277                 <para>New Zealand Dollar </para>
1278               </description>
1279               <description>
1280                 <para>NZD </para>
1281               </description>
1282             </item>
1283             <item>
1284               <term>
1285                 <para>Nicaragua </para>
1286               </term>
1287               <description>
1288                 <para>Nicaraguan Cordoba Oro </para>
1289               </description>
1290               <description>
1291                 <para>NIO </para>
1292               </description>
1293             </item>
1294             <item>
1295               <term>
1296                 <para>Norway </para>
1297               </term>
1298               <description>
1299                 <para>Norwegian Krone </para>
1300               </description>
1301               <description>
1302                 <para>NOK </para>
1303               </description>
1304             </item>
1305             <item>
1306               <term>
1307                 <para>Oman </para>
1308               </term>
1309               <description>
1310                 <para>Omani Rial </para>
1311               </description>
1312               <description>
1313                 <para>OMR </para>
1314               </description>
1315             </item>
1316             <item>
1317               <term>
1318                 <para>Panama </para>
1319               </term>
1320               <description>
1321                 <para>Panamanian Balboa </para>
1322               </description>
1323               <description>
1324                 <para>PAB </para>
1325               </description>
1326             </item>
1327             <item>
1328               <term>
1329                 <para>Paraguay </para>
1330               </term>
1331               <description>
1332                 <para>Paraguay Guarani </para>
1333               </description>
1334               <description>
1335                 <para>PYG </para>
1336               </description>
1337             </item>
1338             <item>
1339               <term>
1340                 <para>People's Republic of China </para>
1341               </term>
1342               <description>
1343                 <para>PRC Renminbi </para>
1344               </description>
1345               <description>
1346                 <para>CNY </para>
1347               </description>
1348             </item>
1349             <item>
1350               <term>
1351                 <para>Peru </para>
1352               </term>
1353               <description>
1354                 <para>Peruvian Nuevo Sol </para>
1355               </description>
1356               <description>
1357                 <para>PEN </para>
1358               </description>
1359             </item>
1360             <item>
1361               <term>
1362                 <para>Philippines </para>
1363               </term>
1364               <description>
1365                 <para>Philippine Peso </para>
1366               </description>
1367               <description>
1368                 <para>PHP </para>
1369               </description>
1370             </item>
1371             <item>
1372               <term>
1373                 <para>Poland </para>
1374               </term>
1375               <description>
1376                 <para>Polish Zloty </para>
1377               </description>
1378               <description>
1379                 <para>PLN </para>
1380               </description>
1381             </item>
1382             <item>
1383               <term>
1384                 <para>Portugal </para>
1385               </term>
1386               <description>
1387                 <para>Euro </para>
1388               </description>
1389               <description>
1390                 <para>EUR </para>
1391               </description>
1392             </item>
1393             <item>
1394               <term>
1395                 <para>Principality of Monaco </para>
1396               </term>
1397               <description>
1398                 <para>Euro </para>
1399               </description>
1400               <description>
1401                 <para>EUR </para>
1402               </description>
1403             </item>
1404             <item>
1405               <term>
1406                 <para>Puerto Rico </para>
1407               </term>
1408               <description>
1409                 <para>US Dollar </para>
1410               </description>
1411               <description>
1412                 <para>USD </para>
1413               </description>
1414             </item>
1415             <item>
1416               <term>
1417                 <para>Qatar </para>
1418               </term>
1419               <description>
1420                 <para>Qatari Rial </para>
1421               </description>
1422               <description>
1423                 <para>QAR </para>
1424               </description>
1425             </item>
1426             <item>
1427               <term>
1428                 <para>Romania </para>
1429               </term>
1430               <description>
1431                 <para>Romanian Leu </para>
1432               </description>
1433               <description>
1434                 <para>RON </para>
1435               </description>
1436             </item>
1437             <item>
1438               <term>
1439                 <para>Russia </para>
1440               </term>
1441               <description>
1442                 <para>Russian Ruble </para>
1443               </description>
1444               <description>
1445                 <para>RUB </para>
1446               </description>
1447             </item>
1448             <item>
1449               <term>
1450                 <para>Saudi Arabia </para>
1451               </term>
1452               <description>
1453                 <para>Saudi Riyal </para>
1454               </description>
1455               <description>
1456                 <para>SAR </para>
1457               </description>
1458             </item>
1459             <item>
1460               <term>
1461                 <para>Serbia </para>
1462               </term>
1463               <description>
1464                 <para>Serbian Dinar </para>
1465               </description>
1466               <description>
1467                 <para>RSD </para>
1468               </description>
1469             </item>
1470             <item>
1471               <term>
1472                 <para>Singapore </para>
1473               </term>
1474               <description>
1475                 <para>Singapore Dollar </para>
1476               </description>
1477               <description>
1478                 <para>SGD </para>
1479               </description>
1480             </item>
1481             <item>
1482               <term>
1483                 <para>Slovakia </para>
1484               </term>
1485               <description>
1486                 <para>Euro</para>
1487               </description>
1488               <description>
1489                 <para>EUR</para>
1490               </description>
1491             </item>
1492             <item>
1493               <term>
1494                 <para>Slovenia </para>
1495               </term>
1496               <description>
1497                 <para>Euro</para>
1498               </description>
1499               <description>
1500                 <para>EUR</para>
1501               </description>
1502             </item>
1503             <item>
1504               <term>
1505                 <para>South Africa </para>
1506               </term>
1507               <description>
1508                 <para>South African Rand </para>
1509               </description>
1510               <description>
1511                 <para>ZAR </para>
1512               </description>
1513             </item>
1514             <item>
1515               <term>
1516                 <para>Spain </para>
1517               </term>
1518               <description>
1519                 <para>Euro </para>
1520               </description>
1521               <description>
1522                 <para>EUR </para>
1523               </description>
1524             </item>
1525             <item>
1526               <term>
1527                 <para>Sweden </para>
1528               </term>
1529               <description>
1530                 <para>Swedish Krona </para>
1531               </description>
1532               <description>
1533                 <para>SEK </para>
1534               </description>
1535             </item>
1536             <item>
1537               <term>
1538                 <para>Switzerland </para>
1539               </term>
1540               <description>
1541                 <para>Swiss Franc </para>
1542               </description>
1543               <description>
1544                 <para>CHF </para>
1545               </description>
1546             </item>
1547             <item>
1548               <term>
1549                 <para>Syria </para>
1550               </term>
1551               <description>
1552                 <para>Syrian Pound </para>
1553               </description>
1554               <description>
1555                 <para>SYP </para>
1556               </description>
1557             </item>
1558             <item>
1559               <term>
1560                 <para>Taiwan </para>
1561               </term>
1562               <description>
1563                 <para>New Taiwan Dollar </para>
1564               </description>
1565               <description>
1566                 <para>TWD </para>
1567               </description>
1568             </item>
1569             <item>
1570               <term>
1571                 <para>Thailand </para>
1572               </term>
1573               <description>
1574                 <para>Thai Baht </para>
1575               </description>
1576               <description>
1577                 <para>THB </para>
1578               </description>
1579             </item>
1580             <item>
1581               <term>
1582                 <para>Trinidad and Tobago </para>
1583               </term>
1584               <description>
1585                 <para>Trinidad Dollar </para>
1586               </description>
1587               <description>
1588                 <para>TTD </para>
1589               </description>
1590             </item>
1591             <item>
1592               <term>
1593                 <para>Tunisia </para>
1594               </term>
1595               <description>
1596                 <para>Tunisian Dinar </para>
1597               </description>
1598               <description>
1599                 <para>TND </para>
1600               </description>
1601             </item>
1602             <item>
1603               <term>
1604                 <para>Turkey </para>
1605               </term>
1606               <description>
1607                 <para>Turkish Lira </para>
1608               </description>
1609               <description>
1610                 <para>TRY</para>
1611               </description>
1612             </item>
1613             <item>
1614               <term>
1615                 <para>Ukraine </para>
1616               </term>
1617               <description>
1618                 <para>Ukrainian Hryvnia </para>
1619               </description>
1620               <description>
1621                 <para>UAH </para>
1622               </description>
1623             </item>
1624             <item>
1625               <term>
1626                 <para>United Arab Emirates </para>
1627               </term>
1628               <description>
1629                 <para>UAE Dirham </para>
1630               </description>
1631               <description>
1632                 <para>AED </para>
1633               </description>
1634             </item>
1635             <item>
1636               <term>
1637                 <para>United Kingdom </para>
1638               </term>
1639               <description>
1640                 <para>UK Pound Sterling </para>
1641               </description>
1642               <description>
1643                 <para>GBP </para>
1644               </description>
1645             </item>
1646             <item>
1647               <term>
1648                 <para>United States </para>
1649               </term>
1650               <description>
1651                 <para>US Dollar </para>
1652               </description>
1653               <description>
1654                 <para>USD </para>
1655               </description>
1656             </item>
1657             <item>
1658               <term>
1659                 <para>Uruguay </para>
1660               </term>
1661               <description>
1662                 <para>Peso Uruguayo </para>
1663               </description>
1664               <description>
1665                 <para>UYU </para>
1666               </description>
1667             </item>
1668             <item>
1669               <term>
1670                 <para>Uzbekistan </para>
1671               </term>
1672               <description>
1673                 <para>Uzbekistan Som </para>
1674               </description>
1675               <description>
1676                 <para>UZS </para>
1677               </description>
1678             </item>
1679             <item>
1680               <term>
1681                 <para>Vietnam </para>
1682               </term>
1683               <description>
1684                 <para>Vietnamese Dong </para>
1685               </description>
1686               <description>
1687                 <para>VND </para>
1688               </description>
1689             </item>
1690             <item>
1691               <term>
1692                 <para>Yemen </para>
1693               </term>
1694               <description>
1695                 <para>Yemeni Rial </para>
1696               </description>
1697               <description>
1698                 <para>YER </para>
1699               </description>
1700             </item>
1701             <item>
1702               <term>
1703                 <para>Zimbabwe </para>
1704               </term>
1705               <description>
1706                 <para>Zimbabwe Dollar </para>
1707               </description>
1708               <description>
1709                 <para>ZWL </para>
1710               </description>
1711             </item>
1712           </list>
1713         </remarks>
1714         <summary>
1715           <attribution license="cc4" from="Microsoft" modified="false" />
1716           <para>Gets the three-character ISO 4217 currency symbol associated with the country/region.</para>
1717         </summary>
1718       </Docs>
1719     </Member>
1720     <Member MemberName="Name">
1721       <MemberSignature Language="C#" Value="public virtual string Name { get; }" />
1722       <MemberSignature Language="ILAsm" Value=".property instance string Name" />
1723       <MemberType>Property</MemberType>
1724       <AssemblyInfo>
1725         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1726         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1727         <AssemblyVersion>4.0.0.0</AssemblyVersion>
1728       </AssemblyInfo>
1729       <ReturnValue>
1730         <ReturnType>System.String</ReturnType>
1731       </ReturnValue>
1732       <Docs>
1733         <value>To be added: an object of type 'string'</value>
1734         <remarks>
1735           <attribution license="cc4" from="Microsoft" modified="false" />
1736           <para>If the current <see cref="T:System.Globalization.RegionInfo" /> object is created with the <see cref="M:System.Globalization.RegionInfo.#ctor(System.Int32)" /> constructor that takes a culture identifier parameter, the <see cref="P:System.Globalization.RegionInfo.Name" /> property value is one of the two-letter codes defined in ISO 3166 for the country/region and is formatted in uppercase. For example, the two-letter code for the United States is "US".</para>
1737           <para>If the current <see cref="T:System.Globalization.RegionInfo" /> object is created with the <see cref="M:System.Globalization.RegionInfo.#ctor(System.String)" /> constructor and is passed a full culture name such as "en-US", the <see cref="P:System.Globalization.RegionInfo.Name" /> property value is a full culture name and not just the region name.</para>
1738         </remarks>
1739         <summary>
1740           <attribution license="cc4" from="Microsoft" modified="false" />
1741           <para>Gets the name or ISO 3166 two-letter country/region code for the current <see cref="T:System.Globalization.RegionInfo" /> object.</para>
1742         </summary>
1743       </Docs>
1744     </Member>
1745     <Member MemberName="NativeName">
1746       <MemberSignature Language="C#" Value="public virtual string NativeName { get; }" />
1747       <MemberSignature Language="ILAsm" Value=".property instance string NativeName" />
1748       <MemberType>Property</MemberType>
1749       <AssemblyInfo>
1750         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1751         <AssemblyVersion>4.0.0.0</AssemblyVersion>
1752       </AssemblyInfo>
1753       <Attributes>
1754         <Attribute>
1755           <AttributeName>System.Runtime.InteropServices.ComVisible(false)</AttributeName>
1756         </Attribute>
1757       </Attributes>
1758       <ReturnValue>
1759         <ReturnType>System.String</ReturnType>
1760       </ReturnValue>
1761       <Docs>
1762         <value>To be added.</value>
1763         <since version=".NET 2.0" />
1764         <remarks>
1765           <attribution license="cc4" from="Microsoft" modified="false" />
1766           <block subset="none" type="note">
1767             <para>The <see cref="P:System.Globalization.RegionInfo.NativeName" /> property retrieves a full culture name if the RegionInfo object is constructed using a full culture name.</para>
1768           </block>
1769           <para>We recommend that you use the culture name—for example, "en-US" for English (United States)—to access the <see cref="P:System.Globalization.RegionInfo.NativeName" /> property. The string used for this property depends on the language associated with the country/region. For example, the culture names en-US for English (United States) and es-US for Spanish (United States) can retrieve different values on Windows Vista. Therefore, creating the RegionInfo object with only a country/region name of US is not specific enough to distinguish the appropriate string.</para>
1770         </remarks>
1771         <summary>
1772           <attribution license="cc4" from="Microsoft" modified="false" />
1773           <para>Gets the name of a country/region formatted in the native language of the country/region.</para>
1774         </summary>
1775       </Docs>
1776     </Member>
1777     <Member MemberName="ThreeLetterISORegionName">
1778       <MemberSignature Language="C#" Value="public virtual string ThreeLetterISORegionName { get; }" />
1779       <MemberSignature Language="ILAsm" Value=".property instance string ThreeLetterISORegionName" />
1780       <MemberType>Property</MemberType>
1781       <AssemblyInfo>
1782         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1783         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1784         <AssemblyVersion>4.0.0.0</AssemblyVersion>
1785       </AssemblyInfo>
1786       <ReturnValue>
1787         <ReturnType>System.String</ReturnType>
1788       </ReturnValue>
1789       <Docs>
1790         <value>To be added: an object of type 'string'</value>
1791         <remarks>
1792           <attribution license="cc4" from="Microsoft" modified="false" />
1793           <para>The <see cref="P:System.Globalization.RegionInfo.ThreeLetterISORegionName" /> property contains the three-letter code defined in ISO 3166 for this country/region. For example, the three-letter code for United States is "USA".</para>
1794           <para>Case is not significant. However, the <see cref="P:System.Globalization.RegionInfo.Name" />, the <see cref="P:System.Globalization.RegionInfo.TwoLetterISORegionName" />, and the <see cref="P:System.Globalization.RegionInfo.ThreeLetterISORegionName" /> properties return the appropriate code in uppercase.</para>
1795         </remarks>
1796         <summary>
1797           <attribution license="cc4" from="Microsoft" modified="false" />
1798           <para>Gets the three-letter code defined in ISO 3166 for the country/region.</para>
1799         </summary>
1800       </Docs>
1801     </Member>
1802     <Member MemberName="ThreeLetterWindowsRegionName">
1803       <MemberSignature Language="C#" Value="public virtual string ThreeLetterWindowsRegionName { get; }" />
1804       <MemberSignature Language="ILAsm" Value=".property instance string ThreeLetterWindowsRegionName" />
1805       <MemberType>Property</MemberType>
1806       <AssemblyInfo>
1807         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1808         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1809         <AssemblyVersion>4.0.0.0</AssemblyVersion>
1810       </AssemblyInfo>
1811       <ReturnValue>
1812         <ReturnType>System.String</ReturnType>
1813       </ReturnValue>
1814       <Docs>
1815         <value>To be added: an object of type 'string'</value>
1816         <remarks>
1817           <attribution license="cc4" from="Microsoft" modified="false" />
1818           <para>For example, the three-letter code for United States is "USA".</para>
1819         </remarks>
1820         <summary>
1821           <attribution license="cc4" from="Microsoft" modified="false" />
1822           <para>Gets the three-letter code assigned by Windows to the country/region represented by this <see cref="T:System.Globalization.RegionInfo" />.</para>
1823         </summary>
1824       </Docs>
1825     </Member>
1826     <Member MemberName="ToString">
1827       <MemberSignature Language="C#" Value="public override string ToString ();" />
1828       <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance string ToString() cil managed" />
1829       <MemberType>Method</MemberType>
1830       <AssemblyInfo>
1831         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1832         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1833         <AssemblyVersion>4.0.0.0</AssemblyVersion>
1834       </AssemblyInfo>
1835       <ReturnValue>
1836         <ReturnType>System.String</ReturnType>
1837       </ReturnValue>
1838       <Parameters />
1839       <Docs>
1840         <since version=".NET 2.0" />
1841         <remarks>
1842           <attribution license="cc4" from="Microsoft" modified="false" />
1843           <para>This method overrides <see cref="M:System.Object.ToString" />.</para>
1844           <para>This method returns the value of the <see cref="P:System.Globalization.RegionInfo.Name" /> property.</para>
1845           <para>Case is not significant. However, the <see cref="P:System.Globalization.RegionInfo.Name" />, the <see cref="P:System.Globalization.RegionInfo.TwoLetterISORegionName" />, and the <see cref="P:System.Globalization.RegionInfo.ThreeLetterISORegionName" /> properties return the appropriate code in uppercase.</para>
1846           <para>The predefined <see cref="T:System.Globalization.RegionInfo" /> names are listed in the <see cref="T:System.Globalization.RegionInfo" /> class topic.</para>
1847         </remarks>
1848         <summary>
1849           <attribution license="cc4" from="Microsoft" modified="false" />
1850           <para>Returns a string containing the culture name or ISO 3166 two-letter country/region codes specified for the current <see cref="T:System.Globalization.RegionInfo" />.</para>
1851         </summary>
1852         <returns>
1853           <attribution license="cc4" from="Microsoft" modified="false" />
1854           <para>A string containing the culture name or ISO 3166 two-letter country/region codes defined for the current <see cref="T:System.Globalization.RegionInfo" />.</para>
1855         </returns>
1856       </Docs>
1857     </Member>
1858     <Member MemberName="TwoLetterISORegionName">
1859       <MemberSignature Language="C#" Value="public virtual string TwoLetterISORegionName { get; }" />
1860       <MemberSignature Language="ILAsm" Value=".property instance string TwoLetterISORegionName" />
1861       <MemberType>Property</MemberType>
1862       <AssemblyInfo>
1863         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1864         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1865         <AssemblyVersion>4.0.0.0</AssemblyVersion>
1866       </AssemblyInfo>
1867       <ReturnValue>
1868         <ReturnType>System.String</ReturnType>
1869       </ReturnValue>
1870       <Docs>
1871         <value>To be added: an object of type 'string'</value>
1872         <remarks>
1873           <attribution license="cc4" from="Microsoft" modified="false" />
1874           <para>The <see cref="T:System.Globalization.RegionInfo" /> name is one of the two-letter codes defined in ISO 3166 for country/region. For example, the two-letter code for United States is "US".</para>
1875           <block subset="none" type="note">
1876             <para>In some cases, the <see cref="P:System.Globalization.RegionInfo.TwoLetterISORegionName" /> property may have more than two characters. For example, the value of the <see cref="P:System.Globalization.RegionInfo.TwoLetterISORegionName" /> property for the Caribbean region is "029". </para>
1877           </block>
1878           <para>Case is not significant. However, the <see cref="P:System.Globalization.RegionInfo.Name" />, the <see cref="P:System.Globalization.RegionInfo.TwoLetterISORegionName" />, and the <see cref="P:System.Globalization.RegionInfo.ThreeLetterISORegionName" /> properties return the appropriate code in uppercase.</para>
1879           <block subset="none" type="note">
1880             <para>If you want to persist a <see cref="T:System.Globalization.RegionInfo" /> object or communicate it between processes, you should instantiate it by using a full culture name rather than a two-letter ISO region code. Because <see cref="T:System.Globalization.RegionInfo" /> properties depend on script and language, instantiating a <see cref="T:System.Globalization.RegionInfo" /> object by using only a region code loses context and data.</para>
1881           </block>
1882           <para>The predefined <see cref="T:System.Globalization.RegionInfo" /> names are listed in <see cref="http://go.microsoft.com/fwlink/?LinkId=190591">English country names and code elements</see> on the ISO website.</para>
1883         </remarks>
1884         <summary>
1885           <attribution license="cc4" from="Microsoft" modified="false" />
1886           <para>Gets the two-letter code defined in ISO 3166 for the country/region.</para>
1887         </summary>
1888       </Docs>
1889     </Member>
1890   </Members>
1891 </Type>