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

◆ operator double?()

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

Definition at line 293 of file XAttribute.cs.

294 {
295 if (attribute == null)
296 {
297 return null;
298 }
299 return XmlConvert.ToDouble(attribute.value);
300 }

References System.Xml.XmlConvert.ToDouble().