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

◆ operator DateTime()

static System.Xml.Linq.XAttribute.operator DateTime ( XAttribute attribute)
inlineexplicitstatic

Definition at line 324 of file XAttribute.cs.

325 {
326 if (attribute == null)
327 {
328 throw new ArgumentNullException("attribute");
329 }
330 return DateTime.Parse(attribute.value, CultureInfo.InvariantCulture, DateTimeStyles.RoundtripKind);
331 }
static CultureInfo InvariantCulture

References System.Globalization.CultureInfo.InvariantCulture, and System.DateTime.Parse().