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

◆ PercentNegativePattern

int System.Globalization.NumberFormatInfo.PercentNegativePattern
getset

Definition at line 294 of file NumberFormatInfo.cs.

295 {
296 get
297 {
299 }
300 set
301 {
302 if (value < 0 || value > 11)
303 {
304 throw new ArgumentOutOfRangeException("value", value, SR.Format(SR.ArgumentOutOfRange_Range, 0, 11));
305 }
308 }
309 }