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

◆ operator long?()

static System.Xml.Linq.XElement.operator long? ( XElement? element)
inlineexplicitstatic

Definition at line 779 of file XElement.cs.

780 {
781 if (element == null)
782 {
783 return null;
784 }
785 return XmlConvert.ToInt64(element.Value);
786 }

References System.Xml.XmlConvert.ToInt64().