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

◆ PercentPositivePattern

int System.Globalization.NumberFormatInfo.PercentPositivePattern
getset

Definition at line 277 of file NumberFormatInfo.cs.

278 {
279 get
280 {
282 }
283 set
284 {
285 if (value < 0 || value > 3)
286 {
287 throw new ArgumentOutOfRangeException("value", value, SR.Format(SR.ArgumentOutOfRange_Range, 0, 3));
288 }
291 }
292 }