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

822 {
823 if (element == null)
824 {
825 return null;
826 }
827 return XmlConvert.ToSingle(element.Value);
828 }

References System.Xml.XmlConvert.ToSingle().