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

◆ CurrencyGroupSizes

int [] System.Globalization.NumberFormatInfo.CurrencyGroupSizes
getset

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 }
134 int[] array = (int[])value.Clone();
135 CheckGroupSize("value", array);
137 }
138 }
static void CheckGroupSize(string propName, int[] groupSize)