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

◆ SetValue()

void System.Xml.Linq.XElement.SetValue ( object value)
inline

Definition at line 666 of file XElement.cs.

667 {
668 if (value == null)
669 {
670 throw new ArgumentNullException("value");
671 }
672 Value = XContainer.GetStringValue(value);
673 }

References System.Xml.Linq.XContainer.GetStringValue(), System.value, and System.Xml.Linq.XElement.Value.