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

◆ NaNSymbol

string System.Globalization.NumberFormatInfo.NaNSymbol
getset

Definition at line 226 of file NumberFormatInfo.cs.

227 {
228 get
229 {
230 return _nanSymbol;
231 }
232 set
233 {
234 if (value == null)
235 {
236 throw new ArgumentNullException("value");
237 }
240 }
241 }