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

◆ CurrencyNegativePattern

int System.Globalization.NumberFormatInfo.CurrencyNegativePattern
getset

Definition at line 243 of file NumberFormatInfo.cs.

244 {
245 get
246 {
248 }
249 set
250 {
251 if (value < 0 || value > 15)
252 {
253 throw new ArgumentOutOfRangeException("value", value, SR.Format(SR.ArgumentOutOfRange_Range, 0, 15));
254 }
257 }
258 }