NumberFormatInfo::NativeDigits Property
Gets or sets a string array of native digits equivalent to the Western digits 0 through 9.
Assembly: mscorlib (in mscorlib.dll)
[ComVisibleAttribute(false)] public: property array<String^>^ NativeDigits { array<String^>^ get (); void set (array<String^>^ value); }
Property Value
Type: array<System::String>An array of type String that contains the native equivalent of the Western digits 0 through 9. The default is an array having the elements "0", "1", "2", "3", "4", "5", "6", "7", "8", and "9".
| Exception | Condition |
|---|---|
| InvalidOperationException | The current NumberFormatInfo object is read-only. |
| ArgumentNullException | In a set operation, the value is nullptr. -or- In a set operation, an element of the value array is nullptr. |
| ArgumentException | In a set operation, the value array does not contain 10 elements. -or- In a set operation, an element of the value array does not contain either a single Char object or a pair of Char objects that comprise a surrogate pair. -or- In a set operation, an element of the value array is not a number digit as defined by the Unicode Standard. That is, the digit in the array element does not have the Unicode Number, Decimal Digit (Nd) General Category value. -or- In a set operation, the numeric value of an element in the value array does not correspond to the element's position in the array. That is, the element at index 0, which is the first element of the array, does not have a numeric value of 0, or the element at index 1 does not have a numeric value of 1. |
The following example demonstrates the NativeDigits property.
// This example demonstrates the NativeDigits property. using namespace System; using namespace System::Globalization; using namespace System::Threading; int main() { CultureInfo^ currentCI = Thread::CurrentThread->CurrentCulture; NumberFormatInfo^ nfi = currentCI->NumberFormat; array<String^>^ nativeDigitList = nfi->NativeDigits; Console::WriteLine("The native digits for the {0} culture are:", currentCI->Name); for each (String^ nativeDigit in nativeDigitList) { Console::Write("\"{0}\" ", nativeDigit); } Console::WriteLine(); } /* This code example produces the following results: The native digits for the en-US culture are: "0" "1" "2" "3" "4" "5" "6" "7" "8" "9" */
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Important