Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CurrencyDecimalDigits
int System.Globalization.NumberFormatInfo.CurrencyDecimalDigits
get
set
Definition at line
88
of file
NumberFormatInfo.cs
.
89
{
90
get
91
{
92
return
_currencyDecimalDigits
;
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
}
100
VerifyWritable
();
101
_currencyDecimalDigits
=
value
;
102
}
103
}
System.Globalization.NumberFormatInfo._currencyDecimalDigits
int _currencyDecimalDigits
Definition
NumberFormatInfo.cs:45
System.Globalization.NumberFormatInfo.VerifyWritable
void VerifyWritable()
Definition
NumberFormatInfo.cs:653
System.ExceptionArgument.value
@ value
System
Globalization
NumberFormatInfo
Generated by
1.10.0