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

◆ operator ulong?()

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

Definition at line 800 of file XElement.cs.

801 {
802 if (element == null)
803 {
804 return null;
805 }
806 return XmlConvert.ToUInt64(element.Value);
807 }

References System.Xml.XmlConvert.ToUInt64().