NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

NumberFormatInfo.NumberGroupSeparator

Retrieves and assigns the String used to separate groups of digits to the left of the decimal point.

[Visual Basic]
Public Property NumberGroupSeparator As String
[C#]
public string NumberGroupSeparator {get; set;}
[C++]
public: __property String* get_NumberGroupSeparator();
public: __property void set_NumberGroupSeparator(String*);
[JScript]
public function get NumberGroupSeparator() : String;
public function set NumberGroupSeparator(String);

Property Value

Read/write. The String used to separate groups of digits to the left of the decimal point. The default value is ','.

Exceptions

Exception Type Condition
ArgumentException value to assign is null.
InvalidOperationException This NumberFormatInfo object is read-only and an attempt is made to assign a value.

Remarks

Assignment is not allowed if this NumberFormatInfo object is read-only.

See Also

NumberFormatInfo Class | NumberFormatInfo Members | System.Globalization Namespace