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

◆ operator long?()

static System.Xml.Linq.XAttribute.operator long? ( XAttribute? attribute)
inlineexplicitstatic

Definition at line 230 of file XAttribute.cs.

231 {
232 if (attribute == null)
233 {
234 return null;
235 }
236 return XmlConvert.ToInt64(attribute.value);
237 }

References System.Xml.XmlConvert.ToInt64().