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

◆ operator float()

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

Definition at line 810 of file XElement.cs.

811 {
812 if (element == null)
813 {
814 throw new ArgumentNullException("element");
815 }
816 return XmlConvert.ToSingle(element.Value);
817 }

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