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

◆ operator double?()

static System.Xml.Linq.XElement.operator double? ( XElement? element)
inlineexplicitstatic

Definition at line 842 of file XElement.cs.

843 {
844 if (element == null)
845 {
846 return null;
847 }
848 return XmlConvert.ToDouble(element.Value);
849 }

References System.Xml.XmlConvert.ToDouble().