Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CurrencyPositivePattern
int System.Globalization.NumberFormatInfo.CurrencyPositivePattern
get
set
Definition at line
391
of file
NumberFormatInfo.cs
.
392
{
393
get
394
{
395
return
_currencyPositivePattern
;
396
}
397
set
398
{
399
if
(value < 0 || value > 3)
400
{
401
throw
new
ArgumentOutOfRangeException(
"value"
,
value
, SR.Format(SR.ArgumentOutOfRange_Range, 0, 3));
402
}
403
VerifyWritable
();
404
_currencyPositivePattern
=
value
;
405
}
406
}
System.Globalization.NumberFormatInfo._currencyPositivePattern
int _currencyPositivePattern
Definition
NumberFormatInfo.cs:47
System.Globalization.NumberFormatInfo.VerifyWritable
void VerifyWritable()
Definition
NumberFormatInfo.cs:653
System.ExceptionArgument.value
@ value
System
Globalization
NumberFormatInfo
Generated by
1.10.0