Retrieves and assigns the number of digits in each group to the left of the decimal point.
[Visual Basic] Public Property NumberGroupSize As Integer () [C#] public int[] NumberGroupSize {get; set;} [C++] public: __property int* get_NumberGroupSize(); public: __property void set_NumberGroupSize(int*[]); [JScript] public function get NumberGroupSize() : int[]; public function set NumberGroupSize(int[]);
Read/write. The number of digits in each group to the left of the decimal point. The default is an array of length one with the value 3.
Exception Type | Condition |
---|---|
ArgumentException | value contains any entries that are non-positive other than the last entry, which may be 0. |
InvalidOperationException | This NumberFormatInfo object is read-only and an attempt is made to assign a value. |
ArgumentException | value contains one or more entries greater than 9. |
Note: Assignment is not allowed if this NumberFormatInfo object is read-only.
NumberFormatInfo Class | NumberFormatInfo Members | System.Globalization Namespace