Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
NumberGroupSizes
int [] System.Globalization.NumberFormatInfo.NumberGroupSizes
get
set
Definition at line
140
of file
NumberFormatInfo.cs
.
141
{
142
get
143
{
144
return
(
int
[])
_numberGroupSizes
.Clone();
145
}
146
set
147
{
148
if
(
value
==
null
)
149
{
150
throw
new
ArgumentNullException(
"value"
);
151
}
152
VerifyWritable
();
153
int
[]
array
= (
int
[])
value
.Clone();
154
CheckGroupSize
(
"value"
,
array
);
155
_numberGroupSizes
=
array
;
156
}
157
}
System.Globalization.NumberFormatInfo._numberGroupSizes
int[] _numberGroupSizes
Definition
NumberFormatInfo.cs:7
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