Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
PercentDecimalDigits
int System.Globalization.NumberFormatInfo.PercentDecimalDigits
get
set
Definition at line
443
of file
NumberFormatInfo.cs
.
444
{
445
get
446
{
447
return
_percentDecimalDigits
;
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
}
455
VerifyWritable
();
456
_percentDecimalDigits
=
value
;
457
}
458
}
System.Globalization.NumberFormatInfo._percentDecimalDigits
int _percentDecimalDigits
Definition
NumberFormatInfo.cs:57
System.Globalization.NumberFormatInfo.VerifyWritable
void VerifyWritable()
Definition
NumberFormatInfo.cs:653
System.ExceptionArgument.value
@ value
System
Globalization
NumberFormatInfo
Generated by
1.10.0