Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
PercentGroupSizes
int [] System.Globalization.NumberFormatInfo.PercentGroupSizes
get
set
Definition at line
159
of file
NumberFormatInfo.cs
.
160
{
161
get
162
{
163
return
(
int
[])
_percentGroupSizes
.Clone();
164
}
165
set
166
{
167
if
(
value
==
null
)
168
{
169
throw
new
ArgumentNullException(
"value"
);
170
}
171
VerifyWritable
();
172
int
[]
array
= (
int
[])
value
.Clone();
173
CheckGroupSize
(
"value"
,
array
);
174
_percentGroupSizes
=
array
;
175
}
176
}
System.Globalization.NumberFormatInfo._percentGroupSizes
int[] _percentGroupSizes
Definition
NumberFormatInfo.cs:11
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