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

◆ operator uint?()

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

Definition at line 758 of file XElement.cs.

759 {
760 if (element == null)
761 {
762 return null;
763 }
764 return XmlConvert.ToUInt32(element.Value);
765 }

References System.Xml.XmlConvert.ToUInt32().