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

864 {
865 if (element == null)
866 {
867 return null;
868 }
869 return XmlConvert.ToDecimal(element.Value);
870 }

References System.Xml.XmlConvert.ToDecimal().