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

◆ CurrencyDecimalDigits

int System.Globalization.NumberFormatInfo.CurrencyDecimalDigits
getset

Definition at line 88 of file NumberFormatInfo.cs.

89 {
90 get
91 {
93 }
94 set
95 {
96 if (value < 0 || value > 99)
97 {
98 throw new ArgumentOutOfRangeException("value", value, SR.Format(SR.ArgumentOutOfRange_Range, 0, 99));
99 }
102 }
103 }