Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
NumberDecimalDigits
int System.Globalization.NumberFormatInfo.NumberDecimalDigits
get
set
Definition at line
346
of file
NumberFormatInfo.cs
.
347
{
348
get
349
{
350
return
_numberDecimalDigits
;
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
}
358
VerifyWritable
();
359
_numberDecimalDigits
=
value
;
360
}
361
}
System.Globalization.NumberFormatInfo._numberDecimalDigits
int _numberDecimalDigits
Definition
NumberFormatInfo.cs:43
System.Globalization.NumberFormatInfo.VerifyWritable
void VerifyWritable()
Definition
NumberFormatInfo.cs:653
System.ExceptionArgument.value
@ value
System
Globalization
NumberFormatInfo
Generated by
1.10.0