Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
PercentNegativePattern
int System.Globalization.NumberFormatInfo.PercentNegativePattern
get
set
Definition at line
294
of file
NumberFormatInfo.cs
.
295
{
296
get
297
{
298
return
_percentNegativePattern
;
299
}
300
set
301
{
302
if
(value < 0 || value > 11)
303
{
304
throw
new
ArgumentOutOfRangeException(
"value"
,
value
, SR.Format(SR.ArgumentOutOfRange_Range, 0, 11));
305
}
306
VerifyWritable
();
307
_percentNegativePattern
=
value
;
308
}
309
}
System.Globalization.NumberFormatInfo._percentNegativePattern
int _percentNegativePattern
Definition
NumberFormatInfo.cs:55
System.Globalization.NumberFormatInfo.VerifyWritable
void VerifyWritable()
Definition
NumberFormatInfo.cs:653
System.ExceptionArgument.value
@ value
System
Globalization
NumberFormatInfo
Generated by
1.10.0