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

◆ operator TimeSpan?()

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

Definition at line 926 of file XElement.cs.

927 {
928 if (element == null)
929 {
930 return null;
931 }
932 return XmlConvert.ToTimeSpan(element.Value);
933 }

References System.Xml.XmlConvert.ToTimeSpan().