Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ NegativeSign

string System.Globalization.NumberFormatInfo.NegativeSign
getset

Definition at line 328 of file NumberFormatInfo.cs.

329 {
330 get
331 {
332 return _negativeSign;
333 }
334 set
335 {
336 if (value == null)
337 {
338 throw new ArgumentNullException("value");
339 }
343 }
344 }

Referenced by System.Globalization.FormatProvider.Number.ParseNumber().