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

◆ NumberDecimalDigits

int System.Globalization.NumberFormatInfo.NumberDecimalDigits
getset

Definition at line 346 of file NumberFormatInfo.cs.

347 {
348 get
349 {
351 }
352 set
353 {
354 if (value < 0 || value > 99)
355 {
356 throw new ArgumentOutOfRangeException("value", value, SR.Format(SR.ArgumentOutOfRange_Range, 0, 99));
357 }
360 }
361 }