NumberFormatInfo.CurrencySymbol-Eigenschaft
Ruft die als Währungssymbol zu verwendende Zeichenfolge ab oder legt diese fest.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Property CurrencySymbol As String
'Usage
Dim instance As NumberFormatInfo
Dim value As String
value = instance.CurrencySymbol
instance.CurrencySymbol = value
public string CurrencySymbol { get; set; }
public:
property String^ CurrencySymbol {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_CurrencySymbol ()
/** @property */
public void set_CurrencySymbol (String value)
public function get CurrencySymbol () : String
public function set CurrencySymbol (value : String)
Eigenschaftenwert
Die als Währungssymbol zu verwendende Zeichenfolge. Der Standard für InvariantInfo ist "$".
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
Die Eigenschaft wird auf NULL (Nothing in Visual Basic) festgelegt. |
|
Die Eigenschaft wird festgelegt, und NumberFormatInfo ist schreibgeschützt. |
Beispiel
Im folgenden Codebeispiel wird die CurrencySymbol-Eigenschaft veranschaulicht. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die NumberFormatInfo-Klasse.
// Display the culture name and currency symbol.
NumberFormatInfo nfi = ci.NumberFormat;
sb.AppendFormat("The currency symbol for '{0}' is '{1}'",
ci.DisplayName, nfi.CurrencySymbol);
sb.AppendLine();
// Display the culture name and currency symbol.
NumberFormatInfo^ numberFormat = culture->NumberFormat;
builder->AppendFormat("The currency symbol for '{0}'"+
"is '{1}'",culture->DisplayName,
numberFormat->CurrencySymbol);
builder->AppendLine();
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
NumberFormatInfo-Klasse
NumberFormatInfo-Member
System.Globalization-Namespace
NumberFormatInfo.CurrencyDecimalDigits-Eigenschaft
NumberFormatInfo.CurrencyDecimalSeparator-Eigenschaft
NumberFormatInfo.CurrencyGroupSeparator-Eigenschaft
NumberFormatInfo.CurrencyGroupSizes-Eigenschaft
NumberFormatInfo.CurrencyNegativePattern-Eigenschaft
NumberFormatInfo.CurrencyPositivePattern-Eigenschaft
NaNSymbol
PercentSymbol
PerMilleSymbol