RegionInfo.CurrencyNativeName プロパティ
アセンブリ: mscorlib (mscorlib.dll 内)

[ComVisibleAttribute(false)] public: virtual property String^ CurrencyNativeName { String^ get (); }
ISO 3166 の国/地域コードに関連付けられた言語で書式指定された、地域で使用される通貨のネイティブな名前。

現在の RegionInfo オブジェクトが特定カルチャを使用して作成され、対応する地域で複数の言語が使用される場合、CurrencyNativeName プロパティは、特定カルチャに関連付けられた通貨名を返します。

CurrencyNativeName プロパティのコード例を次に示します。
' This example demonstrates the RegionInfo.EnglishName, NativeName, ' CurrencyEnglishName, CurrencyNativeName, and GeoId properties. Imports System Imports System.Globalization Class Sample Public Shared Sub Main() Dim ri As New RegionInfo("SE") ' Sweden Console.Clear() Console.WriteLine("Region English Name: . . . {0}", ri.EnglishName) Console.WriteLine("Native Name: . . . . . . . {0}", ri.NativeName) Console.WriteLine("Currency English Name: . . {0}", ri.CurrencyEnglishName) Console.WriteLine("Currency Native Name:. . . {0}", ri.CurrencyNativeName) Console.WriteLine("Geographical ID: . . . . . {0}", ri.GeoId) End Sub 'Main End Class 'Sample ' 'This code example produces the following results: ' 'Region English Name: . . . Sweden 'Native Name: . . . . . . . Sverige 'Currency English Name: . . Swedish Krona 'Currency Native Name:. . . Svensk krona 'Geographical ID: . . . . . 221 '
// This example demonstrates the RegionInfo.EnglishName, NativeName, // CurrencyEnglishName, CurrencyNativeName, and GeoId properties. using System; using System.Globalization; class Sample { public static void Main() { RegionInfo ri = new RegionInfo("SE"); // Sweden Console.Clear(); Console.WriteLine("Region English Name: . . . {0}", ri.EnglishName); Console.WriteLine("Native Name: . . . . . . . {0}", ri.NativeName); Console.WriteLine("Currency English Name: . . {0}", ri.CurrencyEnglishName); Console.WriteLine("Currency Native Name:. . . {0}", ri.CurrencyNativeName); Console.WriteLine("Geographical ID: . . . . . {0}", ri.GeoId); } } /* This code example produces the following results: Region English Name: . . . Sweden Native Name: . . . . . . . Sverige Currency English Name: . . Swedish Krona Currency Native Name:. . . Svensk krona Geographical ID: . . . . . 221 */
// This example demonstrates the RegionInfo.EnglishName, NativeName , // CurrencyEnglishName, CurrencyNativeName, and GeoId properties. using namespace System; using namespace System::Globalization; int main() { // Regional Info for Sweden RegionInfo^ ri = gcnew RegionInfo("SE"); Console::Clear(); Console::WriteLine("Region English Name: . . . {0}", ri->EnglishName); Console::WriteLine("Native Name: . . . . . . . {0}", ri->NativeName); Console::WriteLine("Currency English Name: . . {0}", ri->CurrencyEnglishName); Console::WriteLine("Currency Native Name:. . . {0}", ri->CurrencyNativeName); Console::WriteLine("Geographical ID: . . . . . {0}", ri->GeoId); } /* This code example produces the following results: Region English Name: . . . Sweden Native Name: . . . . . . . Sverige Currency English Name: . . Swedish Krona Currency Native Name:. . . Svensk krona Geographical ID: . . . . . 221 */

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からRegionInfo.CurrencyNativeName プロパティを検索する場合は、下記のリンクをクリックしてください。

- RegionInfo.CurrencyNativeName プロパティのページへのリンク