Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CurrencyNegativePattern
int System.Globalization.NumberFormatInfo.CurrencyNegativePattern
get
set
Definition at line
243
of file
NumberFormatInfo.cs
.
244
{
245
get
246
{
247
return
_currencyNegativePattern
;
248
}
249
set
250
{
251
if
(value < 0 || value > 15)
252
{
253
throw
new
ArgumentOutOfRangeException(
"value"
,
value
, SR.Format(SR.ArgumentOutOfRange_Range, 0, 15));
254
}
255
VerifyWritable
();
256
_currencyNegativePattern
=
value
;
257
}
258
}
System.Globalization.NumberFormatInfo._currencyNegativePattern
int _currencyNegativePattern
Definition
NumberFormatInfo.cs:49
System.Globalization.NumberFormatInfo.VerifyWritable
void VerifyWritable()
Definition
NumberFormatInfo.cs:653
System.ExceptionArgument.value
@ value
System
Globalization
NumberFormatInfo
Generated by
1.10.0