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

◆ CurrencySymbol

string System.Globalization.NumberFormatInfo.CurrencySymbol
getset

Definition at line 192 of file NumberFormatInfo.cs.

193 {
194 get
195 {
196 return _currencySymbol;
197 }
198 set
199 {
200 if (value == null)
201 {
202 throw new ArgumentNullException("value");
203 }
206 }
207 }

Referenced by System.Globalization.FormatProvider.Number.ParseNumber().