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

◆ PercentDecimalDigits

int System.Globalization.NumberFormatInfo.PercentDecimalDigits
getset

Definition at line 443 of file NumberFormatInfo.cs.

444 {
445 get
446 {
448 }
449 set
450 {
451 if (value < 0 || value > 99)
452 {
453 throw new ArgumentOutOfRangeException("value", value, SR.Format(SR.ArgumentOutOfRange_Range, 0, 99));
454 }
457 }
458 }