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 831 of file XElement.cs.

832 {
833 if (element == null)
834 {
835 throw new ArgumentNullException("element");
836 }
837 return XmlConvert.ToDouble(element.Value);
838 }

References System.Xml.XmlConvert.ToDouble(), and System.Xml.Linq.XElement.Value.