Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CurrencyGroupSizes
int [] System.Globalization.NumberFormatInfo.CurrencyGroupSizes
get
set
Definition at line
121
of file
NumberFormatInfo.cs
.
122
{
123
get
124
{
125
return
(
int
[])
_currencyGroupSizes
.Clone();
126
}
127
set
128
{
129
if
(
value
==
null
)
130
{
131
throw
new
ArgumentNullException(
"value"
);
132
}
133
VerifyWritable
();
134
int
[]
array
= (
int
[])
value
.Clone();
135
CheckGroupSize
(
"value"
,
array
);
136
_currencyGroupSizes
=
array
;
137
}
138
}
System.Globalization.NumberFormatInfo._currencyGroupSizes
int[] _currencyGroupSizes
Definition
NumberFormatInfo.cs:9
System.Globalization.NumberFormatInfo.CheckGroupSize
static void CheckGroupSize(string propName, int[] groupSize)
Definition
NumberFormatInfo.cs:685
System.Globalization.NumberFormatInfo.VerifyWritable
void VerifyWritable()
Definition
NumberFormatInfo.cs:653
System.ExceptionArgument.value
@ value
System.ExceptionArgument.array
@ array
System
Globalization
NumberFormatInfo
Generated by
1.10.0