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

◆ operator bool?()

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

Definition at line 716 of file XElement.cs.

717 {
718 if (element == null)
719 {
720 return null;
721 }
722 return XmlConvert.ToBoolean(element.Value.ToLowerInvariant());
723 }

References System.Xml.XmlConvert.ToBoolean().