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

◆ NumberGroupSizes

int [] System.Globalization.NumberFormatInfo.NumberGroupSizes
getset

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 }
153 int[] array = (int[])value.Clone();
154 CheckGroupSize("value", array);
156 }
157 }
static void CheckGroupSize(string propName, int[] groupSize)