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

◆ operator int?()

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

Definition at line 737 of file XElement.cs.

738 {
739 if (element == null)
740 {
741 return null;
742 }
743 return XmlConvert.ToInt32(element.Value);
744 }

References System.Xml.XmlConvert.ToInt32().