NumberFormatInfo.GetInstance-Methode
Ruft die NumberFormatInfo ab, die dem angegebenen IFormatProvider zugeordnet ist.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared Function GetInstance ( _
formatProvider As IFormatProvider _
) As NumberFormatInfo
'Usage
Dim formatProvider As IFormatProvider
Dim returnValue As NumberFormatInfo
returnValue = NumberFormatInfo.GetInstance(formatProvider)
public static NumberFormatInfo GetInstance (
IFormatProvider formatProvider
)
public:
static NumberFormatInfo^ GetInstance (
IFormatProvider^ formatProvider
)
public static NumberFormatInfo GetInstance (
IFormatProvider formatProvider
)
public static function GetInstance (
formatProvider : IFormatProvider
) : NumberFormatInfo
Parameter
formatProvider
Der IFormatProvider, der zum Abrufen der NumberFormatInfo verwendet wird.– oder –
NULL (Nothing in Visual Basic) zum Abrufen von CurrentInfo.
Rückgabewert
Die dem angegebenen IFormatProvider zugeordnete NumberFormatInfo.
Hinweise
Diese Methode verwendet die IFormatProvider.GetFormat-Methode von formatProvider mit NumberFormatInfo als Type-Parameter. Wenn formatProviderNULL (Nothing in Visual Basic) ist oder IFormatProvider.GetFormatNULL (Nothing in Visual Basic) zurückgibt, gibt diese Methode CurrentInfo zurück.
Sie können mithilfe einer der folgenden Methoden eine NumberFormatInfo für eine spezifische Kultur abrufen:
Mithilfe der CultureInfo.NumberFormat-Eigenschaft.
Mithilfe der GetInstance-Methode, wobei provider eine CultureInfo darstellt.
Eine NumberFormatInfo kann nicht für neutrale Kulturen, sondern nur für die invariante Kultur oder für spezifische Kulturen erstellt werden. Weitere Informationen zur invarianten Kultur, spezifischen Kulturen und neutralen Kulturen finden Sie in der CultureInfo-Klasse.
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
IFormatProvider