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

◆ operator decimal()

static System.Xml.Linq.XElement.operator decimal ( XElement element)
inlineexplicitstatic

Definition at line 852 of file XElement.cs.

853 {
854 if (element == null)
855 {
856 throw new ArgumentNullException("element");
857 }
858 return XmlConvert.ToDecimal(element.Value);
859 }

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