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

◆ XElement() [4/9]

System.Xml.Linq.XElement.XElement ( XElement other)
inline

Definition at line 140 of file XElement.cs.

141 : base(other)
142 {
143 name = other.name;
144 XAttribute xAttribute = other.lastAttr;
145 if (xAttribute != null)
146 {
147 do
148 {
149 xAttribute = xAttribute.next;
150 AppendAttributeSkipNotify(new XAttribute(xAttribute));
151 }
152 while (xAttribute != other.lastAttr);
153 }
154 }
void AppendAttributeSkipNotify(XAttribute a)
Definition XElement.cs:1023

References System.Xml.Linq.XElement.AppendAttributeSkipNotify(), System.Xml.Linq.XElement.name, and System.other.