Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ PercentGroupSizes

int [] System.Globalization.NumberFormatInfo.PercentGroupSizes
getset

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 }
172 int[] array = (int[])value.Clone();
173 CheckGroupSize("value", array);
175 }
176 }
static void CheckGroupSize(string propName, int[] groupSize)